中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python如何對文件進行操作

發布時間:2021-10-18 15:29:14 來源:億速云 閱讀:91 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關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.readline() 由于為空,所以返回了空的字符

[]    # 接下來執行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今晚吃雞‘
'''

r模式就不用試了,r只能讀,試試r+模式

with open('msg9', encoding='utf-8', mode='r') as f:

f.write('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+模式不可添加文件
'''

a 模式

with open('msg', encoding='utf-8', mode='a') as f:

f.write('Duminjun is swimming\n今晚吃雞')

#

運行結果(已經在本目錄添加了‘msg’的文件,并且打開文件顯示了以下內容:

'''
Duminjun is swimming   # a 模式可以創建文件并寫入
今晚吃雞
'''

a+模式

with open('msg', encoding='utf-8', mode='a+') as f:

f.write('Duminjun is swimming\n今晚吃雞')

運行結果:和以上a運行結果一樣

w模式

with open('msg', encoding='utf-8', mode='w') as f:

f.write('Duminjun is swimming\n今晚吃雞')

結果:和a模式一樣

w+ 模式

with open('msg4', encoding='utf-8', mode='w+') as f:

f.write('Duminjun is swimming\n今晚吃雞')

運行結果:和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?’ 試試這幾種方法的效果

r

with open('msg', encoding='utf-8', mode='r') as f:

f.write('\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這個實例化對象中沒有可讀這一屬性
'''

r +

with open('msg', encoding='utf-8', mode='r+') as f:

f.write('\nLaura is a playing tennis,What are you dong?')

運行結果:(沒有報錯,文件內容如下:)

'''

Laura is a playing tennis,What are you dong?s swimming
今晚吃雞            # 添加的內容已經插入到了最前面,r+模式可以寫入文件,但是進入文件句柄時光標在最前面
'''

如果想要r+模式增加內容到文末,可以先讀完全部內容,光標就到了最后,然后在把內容寫入文件

with open('msg', encoding='utf-8', mode='r+') as f:

f.readlines()

f.write('\nLaura is a playing tennis,What are you dong?')

運行結果(文件內容如下):

'''
Duminjun is swimming
今晚吃雞
Laura is a playing tennis,What are you dong?
'''

w

with open('msg', encoding='utf-8', mode='w') as f:

f.write('\nLaura is a playing tennis,What are you dong?')

運行結果,文件中顯示以下內容:

'''

Laura is a playing tennis,What are you dong?  # 原文件內容全部清空,寫入了新增加的內容
'''

w+

with open('msg', encoding='utf-8', mode='w+') as f:

f.write('\nLaura is a playing tennis,What are you dong?')

運行結果:和w運行結果一樣

a

with open('msg', encoding='utf-8', mode='a') as f:

f.write('\nLaura is a playing tennis,What are you dong?')

#

運行結果,文件內容如下

'''
Duminjun is swimming
今晚吃雞
Laura is a playing tennis,What are you dong?   # 已經成功到文末
'''

a+

with open('msg', encoding='utf-8', mode='a+') as f:

f.write('\nLaura is a playing tennis,What are you dong?')

運行結果:和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
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)))

邊循環原文件每一行,邊添加新的一行到另外一個文件,如果replace沒有找到舊詞,字符串不會做任何修改,所以不用if...else語句

'''
w,w+在一個句柄里操作不會每次都清空,只有重新以w,w+模式打開一個句柄并且使用f.write()才會清空,就是說兩個句柄是沒有

關于“python如何對文件進行操作”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

彭山县| 湾仔区| 开化县| 彭水| 武威市| 北辰区| 桓仁| 望谟县| 内乡县| 枝江市| 徐汇区| 正镶白旗| 博乐市| 南岸区| 瑞昌市| 阿城市| 西乌| 嘉荫县| 滨海县| 余庆县| 清新县| 雷州市| 湖州市| 如东县| 都兰县| 河源市| 朔州市| 西宁市| 普兰县| 罗江县| 长春市| 庆阳市| 新昌县| 南岸区| 科技| 芦溪县| 三亚市| 肇东市| 全州县| 泸定县| 米林县|