📜  python代码示例之间和之间的差异

📅  最后修改于: 2022-03-11 14:46:59.276000             🧑  作者: Mango

代码示例2
# The true div operator (//) return the quotien of a division
print(5 // 2)
# 2

# The modulo operator (%) returns the reminder of a division
print(5 % 1)
# 1