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 trial

Python

kalyada leosrisook
PLUS
kalyada leosrisook
Courses Plus Student 17,855 Points

Why 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 .

instances.py
    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

I don't think string objects have an "append" method. Instead of

word.append(item) 

use

word += item