python逐行讀寫txt檔案

2021-08-05 20:27:04 字數 655 閱讀 5474

# -*-coding:utf-8-*-

import os

file_obj = open("test2.txt")

all_lines = file_obj.readlines()

for line in all_lines:

print line

file_obj.close()

# 寫之前,先檢驗檔案是否存在,存在就刪掉

if os.path.exists("dest.txt"):

os.remove("dest.txt")

mylist = ["luoluo", "taotao", "mumu"]

# 以寫的方式開啟檔案,如果檔案不存在,就會自動建立

file_write_obj = open("dest.txt", 'w')

for var in mylist:

file_write_obj.writelines(var)

file_write_obj.write('\n')

file_write_obj.close()

w 以寫方式開啟,

a 以追加模式開啟 

r+ 以讀寫模式開啟

w+ 以讀寫模式開啟 

a+ 以讀寫模式開啟

Python 讀寫txt檔案

1 讀取 usr bin python coding utf 8 import os str r c users d1 desktop test.txt f open str,r content f.read print content f.close 2 寫入 str c users d1 des...

python檔案txt讀寫

在鍵盤隨便敲了幾個字並建立了乙個文字檔案 1.txt 我們要使用python將其進行讀寫操作 1 檔案讀寫操作 讀檔案1.txt 使用open和read f open 1.txt print f.read f.close 輸出 de鍝堝搱dfafadsfasdfasd fasdfasdfjasdkh...

Python讀寫txt檔案

最近,我在嘗試用python製作乙個簡單的桌面軟體,但其中遇見幾個小問題想給大家分享一下 一般檔案讀寫都是這樣的 讀取 f open test.txt r txt f.read f.close 寫入with open test.txt w as f f.write nothing f.close那,...