TIL(Today I Learned)1️⃣ Python 문법 강의 수강파이썬 핵심 정리 1. 변수 선언과 자료형# 변수 선언num = 10 # 정수pi = 3.14 # 실수name = "Alice" # 문자열flag = True # 불리언 2. 리스트와 딕셔너리# 리스트fruits = ["apple", "banana"]fruits.append("orange")# 딕셔너리person = {"name": "Alice", "age": 25}print(person["name"]) 3. 조건문과 반복문# 조건문if age >= 18: print("Adult")elif age >= 13: print("Teen")else: print("Child")# 반복문fo..