Hi, I think there is an error in the text of the challenge 1,
I wrote this code :
def every_three_nums(start):
lst=[]
if start==100:
lst=[]
else:
while start<=100:
lst.append(start)
start=start+3
return lst
And I failed the check because it says, that it should have return 100, when start==100 but that’s not true, because text says, we should return an empty list when start==100.
Am I right ?
Link here : https://www.codecademy.com/courses/learn-python-3/articles/advanced-python-code-challenges-lists