python有内置函数吗 python内置函数介绍( 四 )


print("5 and 2 give:",divmod(5,2))
print("25 and 5 give:",divmod(25,5))
# with Floats
print("5.6 and 2 give:",divmod(5.6,2))
print("11.3 and 9.2 give:",divmod(11.3,9.2))
输出结果
运行上面的代码给我们以下结果-5 and 2 give: (2, 1)
python有内置函数吗的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于python内置函数介绍、python有内置函数吗的信息别忘了在本站进行查找喔 。

推荐阅读