
henry duquesnay
6,976 PointsThe EXACT example others provide does not reliably work
def first_4(iterable) return iterable[0:4]
what is going on? Why doesn't this work?
def first_4(iterable)
return iterable[0:4]
1 Answer

KRIS NIKOLAISEN
54,510 PointsThere should be a colon at the end of your first line