I'm new to python (PYTHON 3.4.2) and I'm trying to make a program that adds and divides to find the average or the mean of a user's input, but I can't figure out how to add the numbers I receive.
When I open the program at the command prompt it accepts the numbers I input and would print it also if I use a print function, but it will not sum the numbers up.
I receive this error:
TypeError: unsupported operand type(s) for +: 'int' and 'str'
My code is below:
#Take the user's input
numbers = input("Enter your numbers followed by commas: ")
sum([numbers])
Any help would be deeply appreciated.
input
takes a input as stringyou 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: