- 산술 연산자 : +, -, *, / ,% ,// ,**
- 할당 연산자 : =,+=, -=, *=, /=, %=, //=
- 비교 연산자 : >, >=, <, <=, ==, !=
- 논리 연산자 : and, or not
어려운 부분 X
문자열 비교는 == 혹은 != 만 적용 가능
str1 = 'hello'
str2 = 'hello'
print ('str 1 == str 2 : {}'.format(str1==str2)
print ('str 1 != str 2 : {}'.format(str1!=str2)
-----
str 1 == str 2 : True
str 1 != str 2 : False