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 trialShane Anderson
2,537 PointsMy code seems to work in Workspaces. Not sure what the problem is with this code:
It's very similar to others I've seen posted. What could be wrong, please?
def combiner(myList):
myNum = 0
myString = ""
for i in myList:
if isinstance(i, int):
myNum += i
elif isinstance(i, float):
myNum += i
elif isinstance(i, str):
myString += i
newVar = myString + (str(myNum))
return newVar
1 Answer
KRIS NIKOLAISEN
54,971 PointsI copy/pasted your code into the challenge and it passed
Shane Anderson
2,537 PointsShane Anderson
2,537 PointsOh, wow! Thanks for the good news, Kris!! I just refreshed the page and it worked for me too. Thanks, again!