generated from mwc/lab_iteration
	teacher submit, submit spelled wrong
This commit is contained in:
		@@ -8,8 +8,9 @@ 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."
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user