Created
May 10, 2020 20:12
-
-
Save rasel-rz/40360f45f1c4c7da05cc52b5261c4dd7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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