Refacere repo
This commit is contained in:
9
Python_module_1/python_008.py
Normal file
9
Python_module_1/python_008.py
Normal file
@@ -0,0 +1,9 @@
|
||||
#!/home/andrei/it_school/bin/python3
|
||||
|
||||
x = 0
|
||||
while x < 10:
|
||||
if x == 5:
|
||||
print("Am ajuns la valoarea 5, iesim din bucla.")
|
||||
break
|
||||
print("Valoarea lui x este:", x)
|
||||
x += 1
|
||||
Reference in New Issue
Block a user