This commit is contained in:
Chizuui
2025-11-27 00:38:38 +07:00
parent 5444efab13
commit 1795fa1c2f
81 changed files with 1893 additions and 0 deletions

13
Acara-10/while-true.py Executable file
View File

@@ -0,0 +1,13 @@
angka = 0
while True :
print(angka)
angka = angka + 1
if angka == 2:
print("skip")
continue
if angka == 5:
print ("break")
break
print("selesai")