Python中获取两数相除的商和余数

code

#!/usr/bin/python3
# -*- coding: utf-8 -*- 

a = int(input(u"输入被除数: "))
b = int(input(u"输入除数:"))
div = a // b 
mod = a % b 
print("{} / {} = {} ... {}".format(a, b, div, mod))
print("{} / {} = {} ... {}".format(a, b, *divmod(a, b)))



RUN:
hui@hui-Lenovo-V1000:~/py$ ./test3.py
输入被除数: 100
输入除数:30
100 / 30 = 310
100 / 30 = 310

https://blog.csdn.net/dfq12345/article/details/78198797/

猜你喜欢

转载自www.cnblogs.com/sea-stream/p/12403941.html
今日推荐