def main1(f):
return (f - 32) * 5.0 / 9.0
def main2(c):
return 9.0 / 5.0 * c + 32
the two function above convert fahrenheit and celsius
I have to write a third function which calls the two functions above and allows the user to input to convert between tempertures repeatedly, until the user wants to stop. the user chooses in which way the conversion iis performed. I am not sure how to start my code. Please help
Please do not flag to quote because I use a handheld device to view the forum.
Thanks