Exercise 4 

Write a program in Python language that displays the first 100 integers

Solution:


for i in range(0,101):
print(i)
""" this will display at execution the first 100 numbers :
0
1
2
.
.
.
100
"""
Younes Derfoufi
One thought on “Solution Exercise 4”

Leave a Reply