P ython p rogramming e xercises


E X E R C I S E # 1 2 : S M A L L E S T & B I G G E S T



Yüklə 1,51 Mb.
Pdf görüntüsü
səhifə32/124
tarix14.05.2023
ölçüsü1,51 Mb.
#113537
1   ...   28   29   30   31   32   33   34   35   ...   124
PythonProgrammingExercisesGentlyExplained

E X E R C I S E # 1 2 : S M A L L E S T & B I G G E S T
getSmallest([28, 25, 42, 2, 28])
→ 

Python’s built-in min() and max() functions return the smallest and biggest numbers in a list of 
numbers passed, respectively. In this exercise, you’ll reimplement the behavior of these functions. 
This is the sort of problem that is trivial for a human to solve by hand if the list of numbers is 
short. However, if the list contains thousands, millions, or billions of numbers, you’ll need to program 
a computer to perform the calculation. 
Exercise Description 
Write a getSmallest() function that has a numbers parameter. The numbers parameter will 
be a list of integer and floating-point number values. The function returns the smallest value in the 
list. If the list is empty, the function should return None. Since this function replicates Python’s 
min()
function, your solution shouldn’t use it. 
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 getSmallest([1, 2, 3]) == 1 
assert getSmallest([3, 2, 1]) == 1 
assert getSmallest([28, 25, 42, 2, 28]) == 2 
assert getSmallest([1]) == 1 
assert getSmallest([]) == None 
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. 
When you are done with this exercise, write a getBiggest() function which returns the 
biggest number instead of the smallest number. 
Prerequisite concepts: len(), for loops, lists, None value 


Python Programming Exercises, Gently Explained 
39 

Yüklə 1,51 Mb.

Dostları ilə paylaş:
1   ...   28   29   30   31   32   33   34   35   ...   124




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

gir | qeydiyyatdan keç
    Ana səhifə


yükləyin