Skip to content

Instantly share code, notes, and snippets.

@defrindr
Created February 21, 2019 03:40
Show Gist options
  • Save defrindr/54b39a9e9c0d8da1dab77b390c438d9e to your computer and use it in GitHub Desktop.
Save defrindr/54b39a9e9c0d8da1dab77b390c438d9e to your computer and use it in GitHub Desktop.
contoh contoh perulangan di python
# 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