P ython p rogramming e xercises



Yüklə 1,51 Mb.
Pdf görüntüsü
səhifə9/124
tarix14.05.2023
ölçüsü1,51 Mb.
#113537
1   ...   5   6   7   8   9   10   11   12   ...   124
PythonProgrammingExercisesGentlyExplained

Further Reading 
A ―Hello, world!‖ program is a good target program to create when learning a new programming 
language. Most languages have a concept of standard streams for text-based, command-line 
programs. These programs have a stream of input text and a stream of output text. The stream of 
output text the program produces appears on the screen (via print() in Python). The stream of 


Python Programming Exercises, Gently Explained 

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/



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 

Prerequisite concepts: math operators 

Yüklə 1,51 Mb.

Dostları ilə paylaş:
1   ...   5   6   7   8   9   10   11   12   ...   124




Verilənlər bazası müəlliflik hüququ ilə müdafiə olunur ©azkurs.org 2025
rəhbərliyinə müraciət

gir | qeydiyyatdan keç
    Ana səhifə


yükləyin