Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Mathew Yangang
4,433 Pointsisinstance
I think I am missing something here, but not sure exactly what is the error
def combiner(lst):
x = ""
j=0
for i in range(len(lst)):
if i isinstance(i,str) and isinstance(j,(float,int):
x.append(i)
j+=j
return x + int(j)
1 Answer

kyle kitlinski
5,619 PointsLooks like you just need to remove the first i after the if statement like this. Also i believe i is going to be a number in range every time so you'll want to replace the i in the loop as lst[i]
if isinstance(lst[i],str) and isinstance(j,(float,int):
x.append(lst[i])
Mathew Yangang
4,433 PointsMathew Yangang
4,433 PointsThank you Kyle