标签:默认参数 python head-first 文件处理
#nester.py
def print_lol(the_list,level=0):
for item in the_list:
if isinstance(item,list):
print_lol(item,level+1)
else:
for tab_stop in range(level):
print("\t"),
print(item)
>>> import nester
>>> movies = [‘the holy grail‘, 1975, [‘the life of brain‘, 1979,[ ‘the meaning of life‘, 1983]]]
>>> nester.print_lol(movies,1)
the holy grail
1975
the life of brain
1979
the meaning of life
1983
#nester.py
def print_lol(the_list,indend=False,level=0):
for item in the_list:
if isinstance(item,list):
print_lol(item,indend,level+1)
else:
if indend:
for tab_stop in range(level):
print("\t"),
print(item)
>>> nester.print_lol(movies,True)
the holy grail
1975
the life of brain
1979
the meaning of life
1983
>>> import os
>>> os.getcwd()
‘/Users/zhang/Documents/mou/python/nester‘
>>> data = open(‘夹边沟记事.txt‘)
>>> print(data.readline()),
《夹边沟记事》
>>> print(data.readline()),
正文
>>> print(data.readline()),
作者介绍
>>> print(data.readline()),
>>> print(data.readline()),
>>> print(data.readline()),
>>>
>>> print(data.readline()),
杨显惠,1946年出生于兰州。中国作家协会会员,现居天津。
>>> print(data.readline()),
>>> print(data.readline()),
>>> print(data.readline()),
>>> print(data.readline()),
1965年由兰州二中上山下乡赴甘肃省生产建设兵团安西县小宛农场。1971年入甘肃师范大学数学系读书。1975年在甘肃省农垦局酒泉农垦中学做教师。1981年调往河北省大清河盐场工作。1988年入天津作家协会专职写作至今。主要作品收入《这一片大海滩》、《夹边沟记事》、《告别夹边沟》等书。短篇小说曾获全国短篇小说奖、中国小说学会奖、《上海文学》奖。
>>> data.seek(0)
>>>
>>> for each_line in data:
... print each_line,
...
《夹边沟记事》
正文
作者介绍
......
谢谢读者。
2008年6月15日兰州
>>>data.close()
>>> data = open(‘hello.txt‘)
>>> for each_line in data:
... (role,line_spoken) = each_line.split(‘:‘)
... print role,
... print ‘said:‘,
... print line_spoken,
...
hello said: world
hello said: world
hello said: world
>>>
>>> out = open(‘data.txt‘,‘w‘)
>>> print>>out,‘hello,world‘
>>> out.close()
上面为py2的写法,py3使用print(‘hello,world’,file=out)
当一行代码要使用变量 x 的值时,Python会到所有可用的名字空间(每个函数及变量都有自己的命名空间,局部命名空间)去查找变量,按照如下顺序:
except IOError as err:
print(‘File error:‘+ str(err))
>>> try:
... with open(‘1234.txt‘) as data:
... print data.readline()
... except IOError as err:
... print(‘File error‘ + str(err))
...
File error[Errno 2] No such file or directory: ‘1234.txt‘
with利用了一种名为上下文管理协议(context management protocol)的Python技术,抽象了:
finally:
if ‘data‘ in locals():
data.close()
标签:默认参数 python head-first 文件处理
原文地址:http://blog.csdn.net/qq329735967/article/details/45693837