Skip to content

Commit

Permalink
Merge pull request #23 from alisezisli/main
Browse files Browse the repository at this point in the history
Temperature converter
  • Loading branch information
sachinl0har authored Oct 21, 2021
2 parents bffbb31 + fc88665 commit e0793be
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Basic Programs/Python/Tricky Problems/2-temperature-converter.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#! /usr/bin/python3

#Get the temperature from user:
temp = input("Input the temperature you like to convert (For example: 28C, 52F): ")
#Split the value:
degree = int(temp[:-1])
i_convention = temp[-1]

#Check whether temperature entered in Celsius:
if i_convention.upper() == "C":
result = int(round((9 * degree) / 5 + 32))
o_convention = "Fahrenheit"
#Check whether temperature entered in Fahrenheit:
elif i_convention.upper() == "F":
result = int(round((degree - 32) * 5 / 9))
o_convention = "Celsius"
else:
print("I don't get this. Sorry. Bye!")
quit()

print("The temperature in", o_convention, "is", result, "degrees.")

0 comments on commit e0793be

Please sign in to comment.