파이썬
-
파이썬 독학 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를 가지고 있다.
-
파이썬 1일차 덮밥가게 만들기coding 2022. 9. 1. 01:42
파이썬 독학은 nomadcoders.co의 nico쌤 강의를 수강하고 있습니다. 1. f-string으로 문자열 포맷팅 2. while과 if 를 사용하여 원하는 토핑을 얹어주는 덮밥 가게 코딩을 해봤다. #덮밥 가게 # gyudong_shop def add_sauce(sauce): return(f"{sauce}\n🧉") print("yummy") def add_rice(rice): return(f"{rice}\n🍚") def cutlery(dishes, spoon = "🥄", fork_and_knife = "🍴"): return f"{dishes}\nHere is {spoon} and {fork_and_knife}" ############### topping = "🥦" ############### to..