标签:
之前一直是断断续续地进行学习,学了好久之后发觉自己还只是入门水平,于是乎,今日下定决心,以后要系统地学习,并对每天的学习都作一总结。
1 def test(a,*args,**kwargs): 2 print a 3 print args 4 print kwargs 5 test(1,2,3,d=‘4‘,e=5) 6
def index(func): def panduan(license): def l90(a): if a>90: print(‘1‘) def l60(a): if a>60: print(‘2‘) func(a) pass if license==150: return l90 elif license==100: return l60 pass return panduan @index def liu(a): print(a) pass liu(license=100)(a=91)
1 for line in open("test.txt").readlines(): 2 print line
利用file的迭代器,我们可以这样写:
for line in open("test.txt"): #use file iterators print line
这是最简单也是运行速度最快的写法,他并没显式的读取文件,而是利用迭代器每次读取下一行。
标签:
原文地址:http://www.cnblogs.com/passersby/p/5131965.html