+ 1
How to print num in python
Using for loop how to print 1 to 100 number
2 Réponses
+ 1
Please attempt doing it before you ask the question, it will boost your skills, and challenge you :)
for i in range(1, 100):
print(i)
Using for loop how to print 1 to 100 number