3가지 방법
def main():
for i in range (100):
print (i*2 +1)
for i in range(200):
if i % 2 == 1:
print (i)
v=1
while v<200:
print (v)
v +=2
'python' 카테고리의 다른 글
#positional formationg, #named placeholder (0) | 2020.07.12 |
---|---|
list끼리 + 는 되지만 - 는 안된다? / append , extend 차이 (0) | 2020.06.17 |
"pithon" 을 "python"으로 바꾸기 (0) | 2020.06.16 |
sequence of "non-decreasing" numbers (0) | 2020.06.12 |