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 trialmatthew manning
22,451 Pointswould like to know where i've went wrong with this. thanks in advanced
just would like to be pointed out what errors i have in this i have already seen a solution just want to know what was wrong with mine.
thanks
def combiner(list):
sortedStr= []
sortedInt= []
for items in list:
if isinstance(items,str):
sortedStr.append(items)
elif isinstance(items,(int,float)):
sortedInt.append(items)
else:
continue
joinedStr = "".join(sortedStr)
convertedInt= str(sum(sortedInt))
return joinedStr + convertedInt
2 Answers
reanimator313
6,005 PointsjoinedStr is not intendent
matthew manning
22,451 Pointsthanks :3