# Every course must start with hello world! print('Hello, world!') ###################################### # Converter of Fahrenheit to Celsius # ###################################### tempF = input("Temperature in Fahrenheit: ") tempF = float(tempF) tempC = (tempF - 32) * 5 / 9 print("Temperature in Celsius:", tempC) ############## # Leap Years # ############## def isLeapYear(year): if year % 4 == 0: print(year, "is a leap year!") else: print(year, "is NOT a leap year!") isLeapYear(2023) isLeapYear(2024)