본문 바로가기
솔루션모음/파워 유저를 위한 파이썬 express 이론

[파워 유저를 위한 파이썬express] 3장 이론 연습문제 Exercise 솔루션 답지

by 이얏호이야호 2023. 1. 9.

1. ④ False 
3. (a) if speed >= 60 and speed <= 100: print("정상 속도“)
(b) 
if x > y : max = x 
else: max=y
© 
if op==1: print("one")
elif op ==2 : print("two")
elif op ==3 : print("three")

5. 
20살 이상


7.
temp = int(input("온도를 입력하시오: "))

if temp < 0:
state = "얼음"
else :
state = "기체"
print(state)

9.
들여쓰기를 맞추어야 한다. 
number = int(input("정수를 입력하시오: "))
if number < 0 :
print("음수가 입력되었습니다.")
print("음수를 입력하면 안 됩니다.")

11. (b) 비교 연산이 한번만 이루어진다. 

 

 

댓글