Created
May 10, 2020 20:55
-
-
Save rasel-rz/546c57607c3da29476ed0efb071c2937 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
count = 0 | |
for i in range(4): | |
# print(i) | |
jloop = i + 1 | |
for j in range(jloop): | |
print(count, end="->") | |
count = count + 1 | |
print("") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment