摘要: # -*- coding: utf-8 -*- #数字计算 a=1 b=2 print(a+b) print(a*b) print((a+b)/1) #浮点数 print((a+b)//2) ##保留整数部分 print(17%3) #求余数 print(5**2) #幂乘方 #变量使用前必须定义赋值 #字符串 print('abc') print("abc") print("abc"+"def... 阅读全文
posted @ 2019-08-06 21:42 信方 阅读(209) 评论(0) 推荐(0) 编辑