Today we did a program in Python just to convert celsius to Fahrenheit
# ********* #
# College : Trebas Institute
# Professor: Iyad Koteich
# Class : Edward
# Day: 03/10/2022
# ********* #
def convert(gc):
gf = (gc*9/5)+32
return gf
def good(gf):
if (gf>60 and gf<90):
print(f"{gf} fahrenheit is a good Wealth")
else:
print(f"{gf} fahrenheit is not Good Wealth")
def trebas():
print("College : Trebas Institute")
print("Professor: Iyad Koteich")
print("Class : Edward")
print("Day: 03/10/2022")
print("")
trebas()
optoin = ''
while optoin != '0':
option = int(input("Value in celcus: "))
if option != 0:
gf = convert (option)
good(gf)
else:
print("Exiting")
break