Checkpoint 2: I find it interesting that in interation, we can go by certain intigers of numbers to get to any maximum we put.

I don't think there is anything I do not understand in this Checkpoint.
This commit is contained in:
jbayati
2025-09-29 09:40:25 -04:00
parent 0c57f896fd
commit ab556abded

View File

@@ -9,15 +9,18 @@ def print_all_numbers(maximum):
def print_even_numbers(maximum):
"Prints all even integers from 0 to maximum."
pass
for number in range(0, maximum, 2):
print(number)
def print_odd_numbers(maximum):
"Prints all odd integers from 0 to maximum."
pass
for number in range(1, maximum, 2):
print(number)
def print_multiples_of_five(maximum):
"Prints all integers which are multiples of five from 0 to maximum."
pass
for number in range(0, maximum, 5):
print(number)
chosen_maximum = int(input("Choose a number: "))
print(f"All numbers from 0 to {chosen_maximum}")