Python Programming Exercises,
Gently Explained
7
input text the program accepts comes from the keyboard (via input() in Python). The main benefit
of streams is that you can redirect them: the text output can go to a file instead of the screen, or a
program’s input can come from the output of another program instead of the keyboard. You can
learn more about the
command-line interface, also called
terminal windows, in the free book ―Beyond the
Basic Stuff with Python‖ at
https://inventwithpython.com/beyond/. Command-line programs tend to be
simpler than graphical
programs, and you can find nearly a hundred such programs in the free book,
The Big Book of Small Python Projects at
https://inventwithpython.com/bigbookpython/.
8
E X E R C I S E # 2 : T E M P E R A T U R E
C O N V E R S I O N
convertToCelsius(32)
→
0.0
convertToFahrenheit(100)
→
212
Converting between Celsius and Fahrenheit involves a basic calculation and provides a good
exercise for writing functions that take in a numeric input and return a numeric output. This exercise
tests your ability to use Python’s math operators and translate math equations into Python code.
Exercise Description
Write a convertToFahrenheit() function with a degreesCelsius parameter. This
function returns the number of this temperature in degrees Fahrenheit. Then write a function named
convertToCelsius()
with a degreesFahrenheit parameter and returns a number of this
temperature in degrees Celsius.
Use these two formulas for converting between Celsius and Fahrenheit:
Fahrenheit = Celsius × (9 / 5) + 32
Celsius = (Fahrenheit - 32) × (5 / 9)
These Python assert statements stop the program if their condition is False. Copy them to
the bottom of your solution program. Your solution is correct if the following assert statements’
conditions are all True:
assert convertToCelsius(0) == -17.77777777777778
assert convertToCelsius(180) == 82.22222222222223
assert convertToFahrenheit(0) == 32
assert convertToFahrenheit(100) == 212
assert convertToCelsius(convertToFahrenheit(15)) == 15
# Rounding errors cause a slight discrepancy:
assert convertToCelsius(convertToFahrenheit(42)) == 42.00000000000001
Try to write a solution based on the information in this description. If you still
have trouble
solving this exercise,
read the Solution Design and
Special Cases and Gotchas sections for
additional hints.
Python Programming Exercises, Gently Explained
9
Prerequisite concepts: math operators
Dostları ilə paylaş: