Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

MUZ140847 Ralph Dendere
3,690 Pointsconverting a list to a string
i can't convert a list to a string in a function
# add_list([1, 2, 3]) should return 6
# summarize([1, 2, 3]) should return "The sum of [1, 2, 3] is 6."
# Note: both functions will only take *one* argument each.
def add_list(list1):
sum_of_list = 0
for number in list1:
sum_of_list += number
return sum_of_list
def summarize(list1):
sum_of_list = 0
summary = 0
for number in list1:
sum_of_list += number
x_string = list1
summary = 'The sum of'+str(x_string)+'is'+sum_of_list
return summary
1 Answer

Roman Saibullin
5,805 PointsHi! I think u need convert "sum_of_list" to string type. Like this:
def summarize(list1):
sum_of_list = 0
summary = 0
for number in list1:
sum_of_list += number
x_string = list1
#sum_of_list is number type, need use str() function for string operation
summary = 'The sum of'+str(x_string)+' is '+str(sum_of_list)
return summary