0

Why this code doesn't work? There is no output

X = input() Print = x

4th Feb 2022, 11:50 AM
ZIZO Abd alkawy
2 Answers
+ 1
x= input() print(x)
4th Feb 2022, 11:55 AM
Jayakrishna šŸ‡®šŸ‡³
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
4th Feb 2022, 4:00 PM
Da GD Bot
Da GD Bot - avatar