6 lines
106 B
Python
6 lines
106 B
Python
#!/home/andrei/it_school/bin/python3
|
|
|
|
i = 1
|
|
while i <= 10:
|
|
print("Valoarea lui i este:", i)
|
|
i += 1 |