Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Collections (Retired) Slices Slice Functions

gibran erlangga
gibran erlangga
5,539 Points

how to solve this question (make an argument accepts iterable)?

Hi guys, I having difficulty in solving this problem. Any idea?

slices.py
def first_4 = iterable

1 Answer

step 1 is asking you to write a function called first_4 that returns the first 4 of an iterable. so you need to do a slice.

return iterable[0:4:1] #the first number in the brackets('0') is the beginning of your slice; the second number is the end of your slice; and the third number is the step increment along the way, so 1 would mean that it will print out every number from the beginning of your slice to the end.