python-crash-course/Chapter_07/7-07_infinity.py
2025-02-05 20:45:53 -05:00

8 lines
140 B
Python

# Exercise 7-7 Infinity
# Learning Objective: Write an infinite loop.
num = 1
myNum = 1
while num < 100:
print(myNum)
myNum += 1