Westonci.ca connects you with experts who provide insightful answers to your questions. Join us today and start learning! Our platform offers a seamless experience for finding reliable answers from a network of knowledgeable professionals. Explore comprehensive solutions to your questions from knowledgeable professionals across various fields on our platform.
Sagot :
total = 0
count = 0
while total<=100:
total += int(input("Enter a number: "))
count += 1
print("Sum:",total)
print("Numbers Entered:",count)
I wrote my code in python 3.8. I hope this helps
Answer:
total = 0
count = 0
while total<=100:
total += int(input("Enter a number: "))
count += 1
print("Sum:",total)
print("Numbers Entered:",count)
Explanation:
Thank you for trusting us with your questions. We're here to help you find accurate answers quickly and efficiently. Thanks for stopping by. We strive to provide the best answers for all your questions. See you again soon. Find reliable answers at Westonci.ca. Visit us again for the latest updates and expert advice.