0
Does input() enters a string?
when I entered a number and tried to print it's sum with other number error was displayed that str can't be concatenated with int.
1 Respuesta
+ 3
Yes. Try i = int(input()) to turn the input into a number (or float(input()))