Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/tutorial/loop-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Dibawah ini adalah contoh penggunaan pengulangan While Loop.
count = 0
while (count < 9):
print ("The count is: ", count)
count = count + 1
count = count + 1 #dalam hal ini kamu bisa menggunakan count += 1 seperti materi [Operator Penugasan (Assignment Operators)]([#operator-penugasan](https://belajarpython.com/tutorial/operator-python/#operator-penugasan))

print ("Good bye!")
```
Expand Down