728x90
반응형
SMALL
파이썬 dic
-
파이썬 독학 4일차 (dicts)coding 2022. 9. 4. 00:00
dictionary 데이터 구조 key와 value가 쌍으로 구조를 이루고 있다. 냅다 player 딕셔너리를 만들어보자 player = { 'name': 'notoow', 'age': 7, 'alive': True 'fav_food' : ["🥦","🍕"] } print(player.get('alive')) player.pop('age') #'age' key를 지운다 player['occupation'] = "president" player['fav_food'].append("❤️") 3일차에 살펴본 것처럼 dic타입도 여러 methods를 가지고 있다.