0
X=6 print (6) print ("6")
will they print the same thing?
2 Respuestas
+ 1
output same but difference is in the way they will be stored
0
outcome would be
6
6
but if you used them in an if statement, one would read true and one would read false.
if x == 6:
True
if x == "6":
False