teacher submit, submit spelled wrong

This commit is contained in:
rrahmany
2025-10-01 10:18:43 -04:00
parent b4947f3e1e
commit a3bb3d14b8
2 changed files with 7 additions and 9 deletions

View File

@@ -8,9 +8,10 @@ def print_all_numbers(maximum):
print(number)
def print_even_numbers(maximum):
"Prints all even integers from 0 to maximum."
pass
"Prints all even integers from 0 to maximum "
for number in range(0,maximum, 2):
print(number)
def print_odd_numbers(maximum):
"Prints all odd integers from 0 to maximum."
pass