「 / 」 爲浮點數除法,返回浮點結果spa
「 // 」 表示整數除法,返回不大於結果的一個最大整數code
print("6 / 4 =" + str(6 / 4)) //1.5
print("6 // 4 =" + str(6 // 4)) //1