사전스터디 미션인 파이썬 기본 구조와 구현
dict = { key1 : value1, key2 : value2, key3 : value3,....}
dict1 = { 'member1':'아이린', 'member2':'웬디', 'member3':'슬기', 'member4':'조이', 'member5':'예리' }
str_1 = 'hello world'
for i in str_1:
print(i)
#
h
e
l
.
.
.
list_1 = ['a', 'b', 'c', 'd']
for i in list_1:
print(i)
#
a
b
c
d
dict_1 = ['a':1, 'b':2, 'c':3, 'd':4]
for i in dict_1.items():
print(i)
# 결과
#('a', 1)
#('b', 2)
#('c', 3)
#('d', 4)
for 변수 in 컨테이너 :
실행할 명령1
실행할 명령2
animals = ['dog', 'cat', 'rabbit', 'monkey']
for animal in animals:
print(animal)
# 결과
dog
cat
.
.
for animal in animals:
if animal == 'cat':
break
print(animal)
# 결과
dog
for animal in animals:
if animal == 'cat':
continue
print(animal)
# 결과
dog
rabbit
.
.
a = 1
b = 2
if a < b:
print('a가 b보다 작다.')
else:
print('a가 b보다 크다.')
# 결과
a가 b보다 작다.
list_1 = ['a','b','c']
list.append('d')
# 결과
list = ['a', 'b', 'c', 'd']
list.pop(1)
# 결과
list ['a', 'c', 'd']