Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #The Fahrenheit to Celsius Calculator
- #Fahrenheit = (Celsius) * (9/5) + 32
- import time
- print("----------Welcome to Shaunak Vids Fahrenheit to Celsius Calculator!----------")
- time.sleep(1)
- fahr = float(input("\nEnter your temperature in Fahrenheit: "))
- print("\nProcessing your request...")
- cels = (fahr - 32) * 5/9
- time.sleep(1)
- print("\nYour inputted temperature(In Fahrenheit) in Celsius is: ",cels)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement