酸草莓

曲折前进,直行低调。
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2012年9月28日

摘要: 1.write(sting)>>> f=open('somefile-11-4.txt','w')>>> f.write('this\nis\nhaiku') #write(string)>>> f.close()>>> >>> f=open('somefile-11-4.txt','r')>>> f.read() #在这里直接f.read()读出的是不换行的一段字符。'this\nis\nhaiku 阅读全文

posted @ 2012-09-28 22:35 酸草莓 阅读(17433) 评论(0) 推荐(0) 编辑

摘要: vim somefile-11-4.txt #创建及编辑一个文件,名称为somefile-11-4.txt注:如果创建了这么一个文件,但是没有写入任何内容,那么:q 退出文件后,此文件是不被创建的。 阅读全文

posted @ 2012-09-28 21:24 酸草莓 阅读(125) 评论(0) 推荐(0) 编辑

摘要: 文件名称:somefile-11-3.txt文件内容:Welcome to this fileThere is nothing here exceptThis stupid haiku使用文件方法:read(n),read(),readline(),readlines()read(n)readlines(): 阅读全文

posted @ 2012-09-28 13:02 酸草莓 阅读(448) 评论(0) 推荐(0) 编辑