+ 2
Why is this invalid syntax in Python?
I cannot get my code to work and I have absolutely no idea why. i have x=(input("How are you?")) print(x) It is saying print(x) is invalid syntax?
1 Réponse
+ 1
The code don't have any error, where you are running?
PD: The parentheses before the input are left over, you can write this x = input("How are you? ")
PD2:If you want to make the most beautiful exit you can do this: x=input("How are you? \n-> ")