A little problem with input in python3.6

number=input ("hello world")
print (number+ ", python")
is there a problem with this code? Why the output is not hello world,python?

Mar.22,2021
The argument of the

input () function is a prompt, that is, if you execute input ("hello world"), it will prompt you to enter a hello world message, and the result you enter will be returned by input.
corresponds to your code, the value you enter will be returned by input and saved to number, and number will save the value you entered.

Menu