from math import * # 引入 # 数字的用法 +-*/ # % 取余 8%5 = 3 # // 整数除法 8//5 = 1 # 先乘除后加减 # str() 将数字变成字串 number = 8 print(str(n...