I have the following python code.
a = input("Enter first number") # 2
b = input("Enter second number") # 3
c = a+b # 23 instead of 5
print(c) # prints out 23 why?
I am using the following command to run python:
python3.7 filename.py
Instead of adding two numbers is concatenates two numbers and give me 23 instead of 5 even though I am using python3.7.
Every answer that I read says it evaluates and return the correct type:
https://www.quora.com/What-is-the-difference-between-raw_input-and-input-in-Python#