Skip to content

Instantly share code, notes, and snippets.

@toannd96
Created April 14, 2018 06:08
Show Gist options
  • Save toannd96/559373159a95f0df9162c0edd437a786 to your computer and use it in GitHub Desktop.
Save toannd96/559373159a95f0df9162c0edd437a786 to your computer and use it in GitHub Desktop.
ve tam giac
for i in range(1,9):
print(i,end='\t')
for j in range(1,1+i):
print('*',end='')
print('\n',end='')
1 *
2 **
3 ***
4 ****
5 *****
6 ******
7 *******
8 ********
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment