python 기본기 정리 - 컨테이너

LEE_JUN_HA·2020년 12월 23일
0

python

목록 보기
10/20

print(type('egoing')) #<class 'str'>
name = 'egoing'
print(name) #egoing
print(type(['egoing', 'leezche', 'graphittie'])) #<class 'list'>
names = ['egoing', 'leezche', 'graphittie']
print(names)
print(names[2]) #graphittie
egoing = ['programmer', 'seoul', 25, False]
egoing[1] = 'busan'
print(egoing) #['programmer', 'busan', 25, False]

-4열의 name들을 묶어, 5열의 names로 list로 만들었다
-7열의 names[2]로 2번째 위치인 graphittie를 출력(위치는 0번부터 시작)
-9열의 egoing[1]로 seoul을 busan으로 바꿨다

profile
할 수 있다, 할 수 있다, 아자뵤!

0개의 댓글