Formula giving different output in python and in Excel

height = 1.65
weight = 70
bmi = weight // (height**2)
print(bmi)

In the above python code in python intrpreter the output is 25 whereas in Excel similar formula gives output of 21.21. Hence why the difference. Shouldn’t Python also give the same output