#sequence type
#1. list (mutable한 특징을 가지고 있음)
days = ['Mon','Tue','Wed','Thur','Fri']
print('Mnn' in days) #해당 데이터가 days안에 존재하는 지 안하는 지 판단해줌
print(days[1:4]) #slice기능 제공(immutable)
print(len(days)) #5
days.append('Sat')
print(days) #['Mon','Tue','Wed','Thur','Fri','Sat']
days.clear() # list 안에 있는 요소를 모두 제거함.
print(days)
#2. Tuple (immutable)
days = ('Mon','Tue','Wed','Thur','Fri')
print(type(days)) #Tuple
#3. dictionary
nico = {
'name': 'Nico',
'age' : 29,
'korean' : True,
'fav_food' : ['Kimchi','Sashimi']
}
nico['handsome'] = True #dictionary에 추가할 수 있음
print(nico)
[Python] 파이썬 기초6. 반복문 (0) | 2021.12.31 |
---|---|
[Python] 파이썬 기초5. 조건문 (0) | 2021.12.31 |
[Python] 파이썬 기초4. 함수 (0) | 2021.12.31 |
[Python] 파이썬 기초 3. 문장에 변수 넣기 (0) | 2021.12.31 |
[Python] 파이썬 기초1 (0) | 2021.12.31 |