Python 3.13.6 (tags/v3.13.6:4e66535, Aug 6 2025, 14:36:00) [MSC v.1944 64 bit (AMD64)] on win32 Enter "help" below or click "Help" above for more information. temperature = float(input("current temperature: ")) 95 SyntaxError: multiple statements found while compiling a single statement temperature = float(input("current temperature: ")) current temperature: 95 >>> is_hot_day = temperature > 85 ... >>> is_hot_day True >>> print(f"Is it a hot day ({temperature} C)? {is_hot_day}") Is it a hot day (95.0 C)? True >>> temperature - 25 70.0 >>> temperature = 25 >>> temperature 25 >>> is_hot_day = temperature > 85 >>> is_hot_day False >>> print(f"Is it a hot day ({temperature} C)? {is_hot_day}") Is it a hot day (25 C)? False >>> temperature = 50 >>> is_hot_day = temperature > 85 >>> print(f"Is it a hot day ({temperature} C)? {is_hot_day}") Is it a hot day (50 C)? False >>> 100 if 9 > 8 else 20 100 >>> 100 if 9 < 8 else 20 20 >>> >>> >>> 100 if 9 > 8 else 20 100 >>> x = 100 if 9 > 8 else 20 >>> x 100