摘要: #--------------------------------------------------------------------------------------- # 字符串连接 : 方法1 '+' str0 = 'hello' str1 = "python" print(str0 + str1) #'hellopython' # 字符串连接 : 方法2 连接对象.join() ... 阅读全文
posted @ 2017-04-05 15:21 醉卧红尘 阅读(150) 评论(0) 推荐(0)