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 trialDaniel Benisti
Front End Web Development Techdegree Graduate 22,224 Pointsproblem with the even function
i tried to check if the length of the list is even , and if so then print it reversed with the slice but it didnt worked
def first_4(word):
return word[:4]
def first_and_last_4(letter):
adds = letter[:4]
allt = adds + letter[-4:]
return allt
def odds(abss):
return abss[1::2]
def reverse_evens(lala):
if len(lala) % 2 == 0:
return lala[::-2]
else:
print("no")
1 Answer
Dylan Glover
2,537 PointsHey Daniel,
I'm not sure about adding the if else to check beforehand, but this code passes the final challenge
def reverse_evens(lala):
lala_rev = lala[::2]
return lala_rev[::-1]
Hope that helps, but keep messing around with it!
Dylan