# FOR loop print("Contoh FOR loop:") for i in range(5): # dari 0 sampai 4 print("Kedip ke-", i+1) print("Selesai FOR\n") # WHILE loop print("Contoh WHILE loop:") i = 0 while i < 5: print("Kedip ke-", i+1) i += 1 print("Selesai WHILE\n") # DO WHILE loop (simulasi di Python) print("Contoh DO WHILE loop:") i = 0 while True: print("Kedip ke-", i+1) i += 1 if i >= 5: # kondisi berhenti break print("Selesai DO WHILE\n")
Standard input is empty
Contoh FOR loop: ('Kedip ke-', 1) ('Kedip ke-', 2) ('Kedip ke-', 3) ('Kedip ke-', 4) ('Kedip ke-', 5) Selesai FOR Contoh WHILE loop: ('Kedip ke-', 1) ('Kedip ke-', 2) ('Kedip ke-', 3) ('Kedip ke-', 4) ('Kedip ke-', 5) Selesai WHILE Contoh DO WHILE loop: ('Kedip ke-', 1) ('Kedip ke-', 2) ('Kedip ke-', 3) ('Kedip ke-', 4) ('Kedip ke-', 5) Selesai DO WHILE