Files
lab_iteration/ranges.py
juddin2 19f0bb5fc3 I deleted the pass and wrote the range code based on the instructions.
One thing I found interesting about ranges is that I can control where to start and stop and how many stride it can take.
I also found it interesting that if you write a range(0,5), it doesn't stop at 5 but before 5. For now, Im not unsure about anything related to range.
2025-09-14 15:56:03 -04:00

35 lines
1.0 KiB
Python

# ranges.py
# ---------
# By MWC Contributors
def print_all_numbers(maximum):
"Prints all integers from 0 to maximum."
for number in range(20):
print(number)
def print_even_numbers(maximum):
"Prints all even integers from 0 to maximum."
for number in range(0,20,2):
print(number)
def print_odd_numbers(maximum):
"Prints all odd integers from 0 to maximum."
for number in range(1,20,2):
print(number)
def print_multiples_of_five(maximum):
"Prints all integers which are multiples of five from 0 to maximum."
for number in range(5,30,5):
print(number)
chosen_maximum = int(input("Choose a number: "))
print(f"All numbers from 0 to {chosen_maximum}")
print_all_numbers(chosen_maximum)
print(f"All even numbers from 0 to {chosen_maximum}")
print_even_numbers(chosen_maximum)
print(f"All odd numbers from 0 to {chosen_maximum}")
print_odd_numbers(chosen_maximum)
print(f"All multiples of 5 from 0 to {chosen_maximum}")
print_multiples_of_five(chosen_maximum)