1 2 3 4 5 6 7 | # # µû¶óÇÏ¸ç ¹è¿ì´Â ÆÄÀ̽ã°ú µ¥ÀÌÅÍ°úÇÐ(»ý´ÉÃâÆÇ»ç 2020) # LAB 3-2 Ⱦ¾¿Âµµ¸¦ ¼·¾¾¿Âµµ·Î º¯È¯Çϱâ, 76ÂÊ # fahrenheit = float(input("Ⱦ¾¿Âµµ: ")) celsius = (fahrenheit - 32.0) * 5.0 / 9.0 print("¼·¾¾¿Âµµ:", celsius) | cs |