levels of contents
摘要: 1.常用内置函数 print(max([1,2,3,4])) #获取最大值print(sum([1,2,3,4])) #求和print(math.pi) #圆周率的值print(chr(65)) #把数字转成ascii码表里对应的值print(ord('A')) #把字母转为ascii码表里对应的数 阅读全文
posted @ 2018-12-13 16:48 非文艺女青年 阅读(1145) 评论(0) 推荐(0) 编辑
levels of contents