Python File IO

'''
Created on 2011-4-30

@author: xuqiang
'''

# open file 
#
 open(file, mode) 
#
 file : the file to be opened
#
 mode : open file mode, 'r' the file will only be read
#
                        'w'  only writing and existing file with the same name will be erased
#
                         'a' opens the file for appending
#
                         'r+' read & write
#
                         'b' on windows, use this flag to indicate that open file binary, eg 'wb', 'r+b'
= open('./file.txt''r+');
# read the first line
print(f.readline());
# read the left lines
print(f.readlines());
# tell the file pointer position
print("now the file position is ", f.tell());
# set the file pointer to 0L
f.seek(0);
# close the file
f.close();
posted @ 2011-04-30 20:50  qiang.xu  阅读(1378)  评论(0编辑  收藏  举报