“ / ” 为浮点数除法,返回浮点结果spa
“ // ” 表示整数除法,返回不大于结果的一个最大整数code
print("6 / 4 =" + str(6 / 4)) //1.5
print("6 // 4 =" + str(6 // 4)) //1