From 0c5c39333cafe42decbaeae08d586b19eca34b77 Mon Sep 17 00:00:00 2001 From: kbhandari98 Date: Sat, 3 Oct 2020 12:16:28 +0530 Subject: [PATCH] Update Exercises1.py --- Exercises/Exercises1.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Exercises/Exercises1.py b/Exercises/Exercises1.py index bd2c15b..4d824b7 100644 --- a/Exercises/Exercises1.py +++ b/Exercises/Exercises1.py @@ -319,12 +319,12 @@ def fahrenheit_to_celsius2(): Uses 'if' to make sure an entry was made. """ - temp_str = input("Enter a Fahrenheit temperature: ") + temp_str = input("Enter a Fahrenheit temperature:") if temp_str: temp = int(temp_str) newTemp = 5*(temp-32)/9 print("The Fahrenheit temperature",temp,"is equivalent to ",end='') - print(newTemp,"degrees Celsius") + print(newTemp,"in degrees Celsius") #%% """