python除法运算符是什么
时间:2022-02-24 10:24
python除法运算符是什么? 一:“/” 除 - x除以y b / a 输出结果 2 二:“//”取整除 - 返回商的整数部分(向下取整) 推荐:《python教程》 以上就是python除法运算符是什么的详细内容,更多请关注gxlsystem.com其它相关文章!>>> 9//2
4
>>> -9//2
-5