■ Atithmetic operators (산술 연산자)
[Input]
print(1 + 1)
print(1 - 1)
print(2 * 2) # 곱셈
print(4 / 3) # 나눗셈->실수
print(4 // 3) # 몫만 계산
print(4 % 3) # 나머지만 계산
print(2 ** 10) #승수 연산자
[Output]
2 0 4 1.3333333333333333 1 1 1024
■ Data type (데이터 자료형)
[Input]
print(type(3))
print(type('A'))
print(type(3.14))
[Output]
<class 'int'>
<class 'str'>
<class 'float'>
■ Relational and comparison operators (관계 및 비교 연산자)
[Input]
print(10 < 3)
print(10 >3)
print(10 >= 3)
print(10 <= 3)
print(10 == 3)
print(10 != 3)
[Output]
False
True
True
False
False
True