Initial commit: Python learning project with examples and exercises
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
#4.1.2
|
||||
n=1
|
||||
while n<5:
|
||||
print(n)
|
||||
n=n+1
|
||||
|
||||
for i in range(5):
|
||||
print(i)
|
||||
|
||||
Reference in New Issue
Block a user