摘要:
#函数,方法#普通方法def hello(): print('hello')hello()#带形参的方法def hello1(name): print('hello%s'%name)hello1('布拉德皮特')#多个参数的方法def hello2(name1,name2): print('hell 阅读全文
posted @ 2017-06-10 19:38
飞翔的小师弟
阅读(332)
评论(0)
推荐(0)
摘要:
#使用操作文件的时候,可以使用with函数#with open('E:\info.txt','a+') as fr#fr这个值可以是任意值# :#for line in fr:'''with open('a.txt','r') as f: f.read()上下这两行代码是一样的原理f=open('a 阅读全文
posted @ 2017-06-10 19:36
飞翔的小师弟
阅读(217)
评论(0)
推荐(0)