스터디/파이썬 스터디 과제

[1팀/김은혜] 1차시 파이썬 과제 - 입출력

은혜김 2023. 3. 10. 19:40

<연습문제>

1. c

2. a

3. e

4. d,e

5. c

 

03 Lab:화씨온도 변환기 (과제)

a = float(input("Enter the temperature"))
b = float(input((a*1.8)+32))
print(b)

 

코드 간략하게 변경하기

a = input("How old are you?")
print("you are so young")