Study: Northwest heat wave impossible without climate...
2021-07-08
"That's a huge change." The study also found that in the Pacific Northwest and Canada climate change was responsible for about 3.6 degrees (2 degrees Celsisu) of the heat shock. Those...
[Python] docstring 사용법 """ """
2021-04-29
:param temp_celsisu: int :return :int """ if(temp_celsius < -2): return 0 elif (temp_celsius >= -2 )and (temp_celsius < 2): return 1 elif (temp_celsius >= 2 )and (temp_celsius < 15): return 2 else...
데이터 과학을 위한 파이썬 프로그래밍 C.03
2022-05-16
") celsius = input( ) fahrenheit = (float(celsisu) * 1.8) + 32 print("썹씨온도:", celsius) print("화시온도:", fahrenheit) 4.리스트의 이해 리스트가 필요한 이유 프로그래밍 언어에서 가장 많이 사용하는...