您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關python如何對文件進行操作,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
首先看看在pycharm輸入文件句柄,怎樣顯示他的定義
f = open('student_msg', encoding='utf-8', mode='a+') # 打開一個文件,賦值給f
print(type(f), f) # f文件句柄是屬于一個類叫<class '_io.TextIOWrapper'>,也是可迭代對象。(io ---> input and out)
print(dir(f)) # 打印這個類的所有屬性和方法
['_CHUNK_SIZE', 'class', 'del', 'delattr', 'dict', 'dir', 'doc', 'enter', 'eq', 'exit', 'format', 'ge', 'getattribute', 'getstate', 'gt', 'hash', 'init', 'init_subclass', 'iter', 'le', 'lt', 'ne', 'new', 'next', 'reduce', 'reduce_ex', 'repr', 'setattr', 'sizeof', 'str', 'subclasshook', '_checkClosed', '_checkReadable', '_checkSeekable', '_checkWritable', '_finalizing', 'buffer', 'close', 'closed', 'detach', 'encoding', 'errors', 'fileno', 'flush', 'isatty', 'line_buffering', 'mode', 'name', 'newlines', 'read', 'readable', 'readline', 'readlines', 'reconfigure', 'seek', 'seekable', 'tell', 'truncate', 'writable', 'write', 'write_through', 'writelines']
print(f.dict) # f 這個實例化對象中的屬性 {'mode': 'a+'}
源碼對其的解釋定義
'''
========= ===============================================================
Character Meaning
'r' open for reading (default) 默認只讀 'w' open for writing, truncating the file first 首先把文件截斷(全刪了) 'x' create a new file and open it for writing 'a' open for writing, appending to the end of the file if it exists 追加模式 'b' binary mode 二進制模式,打開圖片或者非文本格式時 't' text mode (default) 默認讀取文本 '+' open a disk file for updating (reading and writing) 可讀可寫 ========= ===============================================================
'''
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
文件的操作使用的頻率還是很高,這幾種方法很容易弄混,為了避免以后出現偏差,現在我把幾種常用的方法整理透。
一,.readline() 和 .readlines() 目的是瀏覽,查找文件中的內容用什么模式。先看用六種方式執行的結果。
在register文件中有以下內容,看下分別執行這六種方式返回的結果
”’
這些是文件中的內容
dumingjun
mickle|male
”’
mode='r'
with open('register', encoding='utf-8', mode='r') as f:
print(f.readline())
print(f.readlines())
運行結果:(文件中內容無變化)
'''
這些是文件中的內容
['dumingjun\n', 'mickle|male']
'''
mode='r+'
with open('register', encoding='utf-8', mode='r+') as f:
print(f.readline())
print(f.readlines())
運行結果:(文件中內容無變化)
'''
這些是文件中的內容 # 先讀了一行
['dumingjun\n', 'mickle|male'] # 然后往下執行,把每行作為一個字符串放入列表這個容器中,換行符為\n
'''
mode='w'
with open('register', encoding='utf-8', mode='w') as f:
print(f.readline())
print(f.readlines())
運行結果:(文件中已經沒有內容了)
'''
Traceback (most recent call last):
print(f.readline())
io.UnsupportedOperation: not readable # 報錯原因:’w‘模式是無法讀的,只要看到’w‘,先把文件全清空
'''
mode='w+'
with open('register', encoding='utf-8', mode='w+') as f:
print(f.readline())
print(f.readlines())
運行結果:(文件內容已經為空)
'''
[] # 接下來執行f.readlines(), 返回一個空列表
'''
mode='a'
with open('register', encoding='utf-8', mode='a') as f:
print(f.readline())
print(f.readlines())
運行結果:(文件內容不變)
'''
Traceback (most recent call last):
print(f.readline())
io.UnsupportedOperation: not readable # 報錯原因,’a‘模式只能add,增加,不可讀,因為’a'模式進去時光標自動放在文件的末尾。
'''
mode='a+'
with open('register', encoding='utf-8', mode='a+') as f:
print(f.readline())
print(f.readlines())
運行結果:(文件內容不變)
'''
[] # 同理redlines()返回的是一個空列表。
'''
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
以上代碼的內容顯示在圖片上:
這里寫圖片描述
這里寫圖片描述
這里寫圖片描述
總結
這里寫圖片描述
閱讀,查找相關內容,只能用‘r’或 ‘r+’模式
二 現在要新建一個文件,并且添加內容,先看看五種方法運行的結果
'''
創建名為'msg'的文件,并寫入內容以下內容:
’Duminjun is swimming\n今晚吃雞‘
'''
'''
Traceback (most recent call last):
with open('msg', encoding='utf-8', mode='r+') as f:
FileNotFoundError: [Errno 2] No such file or directory: 'msg' # 沒有名為‘msg’的文件,證明r+模式不可添加文件
'''
#
'''
Duminjun is swimming # a 模式可以創建文件并寫入
今晚吃雞
'''
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
圖示:
這里寫圖片描述
三 如果有名為’msg‘的文件里面有’Duminjun is swimming\n今晚吃雞‘這些內容,現在要增加以下內容
’\nLaura is a playing tennis,What are you dong?’ 試試這幾種方法的效果
'''
Traceback (most recent call last):
f.write('\nLaura is a playing tennis,What are you dong?')
io.UnsupportedOperation: not writable # f這個實例化對象中沒有可讀這一屬性
'''
'''
Laura is a playing tennis,What are you dong?s swimming
今晚吃雞 # 添加的內容已經插入到了最前面,r+模式可以寫入文件,但是進入文件句柄時光標在最前面
'''
'''
Duminjun is swimming
今晚吃雞
Laura is a playing tennis,What are you dong?
'''
'''
Laura is a playing tennis,What are you dong? # 原文件內容全部清空,寫入了新增加的內容
'''
#
'''
Duminjun is swimming
今晚吃雞
Laura is a playing tennis,What are you dong? # 已經成功到文末
'''
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
圖示
這里寫圖片描述
這里寫圖片描述
四,例題:寫函數,用戶傳入修改的文件名,與要修改的內容,執行函數,完成整個文件的批量修改操作
def modify_update():
file_name = input('please input the file name: ').strip()
modify_content = input('please input the content to modified: ')
new_content = input('please input new content you want to replace: ')
with open('{}'.format(file_name), encoding='utf-8', mode='r+') as f, \
open('msk5', encoding='utf-8', mode='w+') as f1: # 打開兩個文件句柄,一個讀原文檔,一個寫入修改后的內容
for i in f:
f1.write(i.replace('{}'.format(modify_content), '{}'.format(new_content)))
'''
w,w+在一個句柄里操作不會每次都清空,只有重新以w,w+模式打開一個句柄并且使用f.write()才會清空,就是說兩個句柄是沒有
關于“python如何對文件進行操作”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。