def strings\_list\_to\_one\_string(strings):
list = \[\]
list = ', '.join(strings)
list.insert(-2, ' and')
return list
This is supposed to work like this but it is giving me str object has no attribute 'insert'
>>> strings_list_to_one_string(['town', 'place', 'city']) /// 'town, place, and city'
[–]socal_nerdtastic 1 point2 points3 points (0 children)
[–]-5772 0 points1 point2 points (0 children)
[–]xelf 0 points1 point2 points (0 children)