Python 除,取余, 取整除 2022-03-24 本文已影响0人 JP0001 myname=15 print(myname/8) # 除 1.875 print(myname%8)# 取余 7 print(myname//8)# 取整除 1