+ 2
Input problem...
If I wrote a code like this = user_name = input("Enter you name : ") print(user_name) Output (After filling the input box )= Enter your name : Shayokh But I want an output like this = Shayokh How can I do that??
2 Answers
+ 6
Just remove the string inside the input()
user_name = input()
+ 3
Yes, you can remove string from input() . Because what is enter into that double quotes will display in a output.