-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from alisezisli/main
Temperature converter
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
Basic Programs/Python/Tricky Problems/2-temperature-converter.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.") |