In analog to the example, write a script that asks users for the temperature in F and prints the temperature in C.
Answers
Answered by
0
Explanation:
The answer is in the attachment
Attachments:
Answered by
2
•In analog to the example, a script that asks users for the temperature in F and prints the temperature in C goes likewise:
•# Program to convert temperature from F into C.
• > > > fahrenheit = input (“Entry the temperature in F : “)
> > > centigrade = (fahrenheit – 32) 8 5/9.0
> > > print “The equivalent temperature in centigrade is”, centigrade
Similar questions