Python program to Convert from Celsius to Fahrenheit

x = int(input("Insert a value in Celsius: "))

x = round(x * (9 / 5) + 32)
print(str(x) + 'F') 

 

Output:

Insert a value in Celsius: 98
208F

 

Insert a value in Celsius: 43
109F

 

Subscribe For Daily Updates

100+ Python Pattern Examplespython pattern examples - star patterns, number patterns