Answers for "General Loop Structure"

0

General Loop Structure

print("Starting...")
count = 0
while count < 10:                           # repeat 10 times
    print(count)
    count = count + 1
print("Done!")pythonCopied!
Posted by: Guest on September-20-2021

Python Answers by Framework

Browse Popular Code Answers by Language