Home
Cloud
Big Data
CI
Install
Samples
Java
Ubuntu
Maven
Archive
Python
|
Loops
Loops
Loops
while loop:
i = 1 while i <= 5: print(i) i += 1
1 2 3 4 5
continue statement:
i = 0 while i <= 5: i += 1 if i % 2 == 0: continue print(i)
1 3 5
break statement:
i = 0 while True: i += 1 if i % 2 == 0: break print(i)
1
© 2010-2022
mti
tek