1 2 3 4
摘要: 算数运算符 算数运算符 描述 + 加 - 减 * 乘 / 除 % 取模,取余 ** 幂,返回x的y次幂 // 取整数 a=8 b=5 print(a+b) print(a-b) print(a*b) print(a/b) print(a%b) print(a//b) print(a**b) 13 3 阅读全文
posted @ 2020-02-07 18:55 多走多看 阅读(469) 评论(0) 推荐(0)