python

python1.字面量(1)整数类似数学上面的整数,包括整数和负数 1print(10) # 输出 10 (2)浮点数类似数学上面的小数 1print(13.14) # 输出 13.14 (3)字符串定义: 字符串(string),又称文本,是...

python