Python 기본 문법
1. 변수와 자료형# 변수 선언x = 10 # 정수형y = 3.14 # 실수형name = "John" # 문자열is_student = True # 불리언 2. 자료형 확인print(type(x)) # print(type(name)) # 3. 연산자산술 연산자: +, -, *, /, %, ** (제곱), // (몫)비교 연산자: ==, !=, >, , >=, 논리 연산자: and, or, nota = 5b = 3print(a + b) # 8print(a > b) # Trueprint(a == b or a > 2) # True 4. 조건문x = 10if x > 5: print("x는 5보다 큽니다.")elif x == 5: print("x는 5입니다."..
2024. 9. 9.