2019年1月3日
摘要: print( )输出 print(12+34) #46 print((12+34)*2) #92 print(((12+34)*2)*3) #276 a = 12+34 b = a*2 c = b*3print(a) #46print(b) #92print(c) #276 print(a,end= 阅读全文
posted @ 2019-01-03 15:00 六月_海动 阅读(503) 评论(0) 推荐(0) 编辑