What is the output of the
X = 2 Y = 5 if Y // X == 2: print("Y//X =", Y//X) print("Thanks")
code?
Thanks
Y//X = 2
Y//X = 2Thanks
Y//X = 2.5
Y//X = 2.5Thanks