Python The Hard Way exercise files.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
235 B

#Write your function here
def every_three_nums(start):
if start > 100:
return []
everythree = range(start, 101, 3)
return list(everythree)
#Uncomment the line below when your function is done
print(every_three_nums(91))