Python檔案流簡單示範

2021-09-05 07:34:08 字數 680 閱讀 3061

將a、b記事本相同的內容輸出到c記事本。

import re

import sys

import os

str1 =

str2 =

str_dump =

fa = open("e:\python\a.txt", 'r')

fb = open("e:\python\b.txt", 'r')

fc = open("e:\python\c.txt", 'w+')

# 將a.txt的內容逐行讀到str1中

for line in fa.readlines():

# line.replace("\n",'') 去掉換行符\n

# 將b.txt中的內容逐行讀到str2中

for line in fb.readlines():

# 將兩個檔案中重複的行,新增到str_dump中

for i in str1:

if i in str2:

# 寫行檔案中

for i in list(str_dump):

fc.write(i + '\n')

fa.close()

fb.close()

fc.close()

print("已成功找出重複內容,輸出到新檔案中了")

python 流寫入檔案 python檔案流操作

博主在學習python時對檔案進行操作時經常踩一下坑。所以專門梳理了一下。有問題麻煩指出哈。python對於檔案的操作我們一般是用open 我們根據python的原始碼可以看出。我們必須要傳的參是file即開啟檔案的url。同時open方法預設是是r的開啟方式即唯讀。open 方法舉例 f open...

python 檔案流,續

又到分享時間了,怎麼說呢,今天所分享,承接上次所分享的,應該是乙個續,讓我們開始study 在python中讀取檔案 fo open d python07 python高階 新建文字文件.txt r encoding utf 8 用open方法 找到位址 然後開啟 表示編碼的型別 txt fo.re...

簡單的檔案流寫讀

region 檔案流寫入 private void writefileinfo stream myfile.open filemode.openorcreate byte bytearr stream.write bytearr,0,bytearr.length 1 stream.flush str...