Login using Social Account
     Continue with GoogleLogin using your credentials
In python, we use open() command to load a file and then read() command to read the file.
lower = 0 upper = 300 step = 20 fahr = lower while (fahr<=upper): celcius = 5*(fahr-32)/9 print(fahr, " " , celcius) fahr = fahr + step
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
No hints are availble for this assesment
Note - Having trouble with the assessment engine? Follow the steps listed here
Loading comments...