Discover new perspectives and gain insights with IDNLearn.com. Our platform provides detailed and accurate responses from experts, helping you navigate any topic with confidence.
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:
We value your participation in this forum. Keep exploring, asking questions, and sharing your insights with the community. Together, we can find the best solutions. Discover the answers you need at IDNLearn.com. Thanks for visiting, and come back soon for more valuable insights.