1
0
Fork 0
python-hard-way/ex11.py

12 linhas
235 B
Python

#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))