Created
February 21, 2019 03:40
-
-
Save defrindr/54b39a9e9c0d8da1dab77b390c438d9e to your computer and use it in GitHub Desktop.
contoh contoh perulangan di python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# membuat perulangan | |
# 10 | |
# 9 | |
# ... | |
# 1 | |
for a in range(10,0,-1): | |
print a | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment