Skip to content

Instantly share code, notes, and snippets.

@rasel-rz
Created May 10, 2020 20:12
Show Gist options
  • Save rasel-rz/40360f45f1c4c7da05cc52b5261c4dd7 to your computer and use it in GitHub Desktop.
Save rasel-rz/40360f45f1c4c7da05cc52b5261c4dd7 to your computer and use it in GitHub Desktop.
for i in range(10):
# Everything here executes ten time
print(i)
# This loop ends here because the next line doesn't have a TAB Space in front.
for i in range(15):
print(i)
#This loop ends here.
print("Jannat")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment