IDNLearn.com is your trusted platform for finding reliable answers. Our experts are available to provide accurate, comprehensive answers to help you make informed decisions about any topic or issue you encounter.
Answer:
numbers = []
for i in range(3):
numbers.append(eval(input("Enter number: ")))
print('Sum is:', sum(numbers))
Explanation:
You want to use a loop to prevent repeating your code.