반응형
>>> 몇줄 = 10
>>> ij = [(i, j) for i in range(몇줄) for j in range(i+1) ]
>>> for n, (i, j) in enumerate(ij):
if i != 0 and j == 0:
print()
print(n%10, end='')
0
12
345
6789
01234
567890
1234567
89012345
678901234
5678901234
728x90
'프로그래밍 > Python' 카테고리의 다른 글
파이썬 xlrd.biffh.XLRDError: Excel xlsx file; not supported (0) | 2021.03.14 |
---|---|
Connected Component (0) | 2021.02.23 |
엘라스틱서치 elasticsearch-dsl 에서 시간조건을 주어 검색하는 방법 (0) | 2021.01.20 |
[파이썬초보] TypeError: 'NoneType' object is not subscriptable (0) | 2021.01.20 |
[Python초보] SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape (1) | 2021.01.15 |