摘要: 1.能调用方法的一定是对象,比如数值、字符串、列表、元组、字典,甚至文件也是对象,Python中一切皆为对象。 1 str1 = 'hello' 2 str2 = 'world' 3 str3 = ' '.join([str1,str2]) 4 print(str3) 2.三种基本的文件操作模式:r 阅读全文
posted @ 2018-02-07 18:14 ankuo 阅读(171) 评论(0) 推荐(0) 编辑