I have completed two parts of the problem, but I am stuck in the .join () method

I don't know how to add "+"
Can someone solve this doubt?
ecuacion="+".join(digits) ?



I don't know how to add "+"
Can someone solve this doubt?
ecuacion="+".join(digits) ?
#create a 20 digit string, and cast to a list #then add all the digits as integers #print the equation and answer #Hint: use cast to sum the digits, [color=#C0392B][b]and .join() to create the equation (1+2+3+...)[/b][/color] digits = "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20" numbers = list() for number in digits.split(','): numbers.append(int(number)) subtotal=0 for num in numbers: num=num+subtotal subtotal=num