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