파이썬

4-2 For 문

Mara7 2022. 10. 20.
반응형
LIST
sum = 0
for i in range(1,100):
    sum += i
print(sum)​
words = ['cat','window','defenestrate']
# words 리스트를 w 변수에 삽입한다.
# for 변수 in 리스트(또는 튜플, 문자열):
#     수행할 문장1
#     수행할 문장2
for w in words:
    # w의 값과 w의 길이값을 출력한다.
    print(w,len(w))
#두개 이상의 변수를 사용하는 방법
users = { "John": "inactive",
               "Helen": "active",
               "James": "active", # and so on...
            }

# Strategy:  Iterate over a copy
for user, status in users.copy().items():
    if status == 'inactive':
        del users[user]

# Strategy:  Create a new collection
active_users = {}
for user, status in users.items():
    if status == 'active':
        active_users[user] = status

print(active_users)

1부터 100까지의 합 구하기


sum = 0
for i in range(1,100):
    sum += i
print(sum)

 

반응형
LIST

댓글