Loading

摘要: 1. 输出字符串和数字 1 >>>print("runoob") # 输出字符串 2 runoob 3 >>> print(100) # 输出数字 4 100 5 >>> str = 'runoob' 6 >>> print(str) # 输出变量 7 runoob 8 >>> L = [1,2,' 阅读全文
posted @ 2019-07-01 18:11 DuKe渡客 阅读(6927) 评论(0) 推荐(0) 编辑