belongs to collection: Python Input and Output Exercises
Expected output:
1 2 3 4 5 6 7 8 9 10
Solution:
# program 1: Print first 10 natural numbers i = 1 while i <= 10: print(i) i += 1
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Solution:
need an explanation for this answer? contact us directly to get an explanation for this answer