Python Math

    5일차)프로그래밍 핵심 개념 in Python(숫자형, 문자열, 형변환)

    5일차)프로그래밍 핵심 개념 in Python(숫자형, 문자열, 형변환)

    1. 숫자형 # 덧셈print(4 + 7) # 11 # 뺄셈print(2 - 4) # -2 # 곱셈print(5 * 3) # 15 # 나머지print(7 % 3) # 1 # 거듭제곱print(2 ** 3) # 8 # 나누기(항상 소수형)print(7 / 2) # 3.5 2. 숫자형 심화 # floor division (버림 나눗셈,몫)print(7 // 2) # 3 print(8 // 3) # 2 print(8.0 // 3) # 2.0 # round (반올림,소숫점 자리 )print(round(3.1414926535, 2)) # 3.14 3. 문자열 print("I'm \"excited\" to learn Python!") # I'm "excited" to learn Python! print("Hello..