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 trialEldin Guzin
6,010 PointsTypeError: unsupported operand type(s) for +: 'int' and 'list'
I am still stuck here I do not know what to do next...
def combiner(*args):
lis1 = []
lis2 = []
for arg in args:
if isinstance(arg, str):
lis1.append(arg)
elif isinstance(arg, str) == False:
lis2.append(arg)
lis1 = "".join(lis1)
lis2 = str(sum(lis2))
combined = lis1 + lis2
return combined
1 Answer
Steven Parker
231,236 PointsThe instructions say this function "takes a single argument, which will be a list...", so you don't need the "splat" (packing) operator ("*
"). You would use that in a function that takes multiple arguments to combine them into a list.