Sum function prob TypeError: unsupported operand type(s) for +: ‘int’ and ‘str’

input takes a input as string >>> numbers = input(“Enter your numbers followed by commas: “) Enter your numbers followed by commas: 1,2,5,8 >>> sum(map(int,numbers.split(‘,’))) 16 you are telling user to give input saperated by comma, so you need to split the string with comma, then convert them to int then sum it demo: >>> … Read more