0
Why this code doesn't work? There is no output
X = input() Print = x
2 Answers
+ 1
x= input()
print(x)
0
Remember that ```Print = x``` is a variable since it declares the "Print" variable to have the value of x
Also python is case sensitive so I don't think that ```Print = x``` would work either since the input variable "X" is capital
What you should do is like what Jayakrishnaš®š³ said
Basically, ```print(x)``` will print out the value of x while ```Print = X``` Declares a variable
edit: Correct me if I'm wrong