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 trialkalyada leosrisook
Courses Plus Student 17,855 PointsWhy is this not correct, when I got the right answer on my local IDE
I am not sure what I'm doing wrong. I did this on my IDE and I got the correct answer but for some reason it doesn't seem to work here .
def combiner(items):
numCount = 0
word = ""
for item in items:
if(isinstance(item,(int,float)) ):
numCount += item
elif(isinstance(item, str)) :
word.append(item)
return "{}{}".format(word,numCount)
1 Answer
William Li
7,950 PointsI don't think string objects have an "append" method. Instead of
word.append(item)
use
word += item