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 trialRoja kajoka
701 Pointshelp me please
help please
def first_4 (first_four_items):
first_four_items = [0:4]
return first_four_items
1 Answer
Henry Jackson
9,579 PointsHi Roja,
You are very close to finishing this function! However, the second line of your code is invalid syntax. You need to write the slice of the array ON the array you pass in as an argument to the function, and not on its own.
I changed the name of your argument for clarity, as you are not passing in the first four items, but rather passing in a list. The function then returns the first four items. Try this and see if it works
def first_4 (array):
first_four_items = array[0:4]
return first_four_items