def every_third(lst):
'''
every_third that takes a list as a parameter and returns
a new list that contains every third element of the original
list, starting at index 0.
>>> every_third([1,2,3,4,5,6,7,8,9,10])
[1,4,7,10]
我該怎麼做?我知道我們可以使用for循環,但我不知道如何開始。如何在python列表中打印每個第三個數字而不使用切片符號(方括號)?
我想你忘了在你的問題中包括你試過的方法。 – L3viathan