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 trialMUZ140847 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