'목록하단 광고 치환자(withSeok)
728x90
A110
# 연산자의 종류
# 지정연산자 (assignment operator, 대입연산자, 할당연산자)

i = 1
i = i+2
print(i)

 

 

A111
# 산술연산자 (arithmetic opeator)
# +,-,*,/
print(1+2)
print(5-2)
print(2*6)
print(8/5)
print()

print(17//5)  # 몫
print(17%5)   # 나머지
print(2**10)  # 거듭제곱

# 연산자의 우선순위
# **,*,/,% 는 +,-보다 먼저 계산한다.

 

 

 

A112
# 관계연산자 (relational operator)
score = 80
print(score >= 80)
print(score < 65)

 

A113
# <= 크거나 같다, >= 작거나 같다

# == 같다, != 다르다

 

 

 

A114

 

 

 

 

A115

 

 

 

 

A11

 

 

 

 

A11

 

 

 

 

A11

 

 

 

 

A11

 

 

 

 

728x90

+ Recent posts