-
[Python] Celsius temperature To Fahrenheit's temperature Basic Function (섭씨, 화씨)Python/Python Programming 2020. 11. 22. 10:05
섭씨와 화씨를 계산하는 간단한 함수
# Celsius temperature To Fahrenheit's temperature # 섭씨를 화씨 def c2f(degree): return round((9/5) * degree + 32,2) print(c2f(40)) 104.0 # Fahrenheit's temperature To Celsius temperature # 화씨를 섭씨 def f2c(degree): return round((5/9) * (degree - 32),2) print(f2c(120.0)) 48.89
'Python > Python Programming' 카테고리의 다른 글
[ Python ] Tree Graph 만들기 (0) 2023.02.15 [ Python ] eval과 literal_eval 차이 (0) 2022.07.03 [ Python ] cx_Oracle을 이용한 oracle 연결 (0) 2022.06.27 [Python] 줄 바꿈(\n) 을 포함 입력 (0) 2020.11.28 [Python] 할당된 변수들을 반복문으로 실행하기. (eval 함수이용) (0) 2020.11.02 [Python] string 모듈을 이용한 임의의 패스워드 만들기 (0) 2020.10.16 [Python] Python Dictionary의 clear 메소드와 { } 차이 (0) 2020.08.03 Jupyter notebook 이미지 삽입하는 방법 (0) 2020.07.22