摘要: 一、数值及其运算 1、算术运算符 a = 3 #变量不需要声明,但在使用前必须赋值b = 2print(a+b)print(a-b)print(a*b)print(a/b)print(a%b)print(a**b)print(a//b) 2、比较运算符 < <= > >= == != 3、赋值运算符 阅读全文
posted @ 2020-06-01 17:31 蜕变1 阅读(663) 评论(0) 推荐(0)