python 檔案讀取

2021-08-19 17:08:05 字數 1063 閱讀 3254

#!/usr/bin/python3

import chardet

import os

#python3 version

#把環境變數切到python/scripts 裡面

#輸入pip install chardet

#del a[2:4]  刪除從第2個元素開始,到第4個為止的元素。包括頭不包括尾。

#pyinstaller 編譯成exe

#解壓前放scripts 安裝完後

#c:\python365_64\lib\site-packages放應用

#scripts指令碼放exe

def collect(rootdir):

for root, dirs, files in os.walk(rootdir):

for file in files:

if file.find("1.txt") != -1 :

print(os.path.join(root, file))

for dire in dirs:

collect(dire)

def abc(x):

return x + 1

print(abc(2))

#collect("c:\\users\\administrator\\desktop\\python\\a")

input()

"""fstream = open("c:\\users\\administrator\\desktop\\python\\write.txt", "rb")

fbyte = fstream.read()

ftype=chardet.detect(fbyte)

print(fbyte.decode(ftype["encoding"]))

fstream.close()

filestream = open("c:\\users\\administrator\\desktop\\python\\write.txt", "w")

filestream.write("abc");

filestream.close();

"""

python高階讀取檔案 Python讀取檔案內容

開啟檔案之後,就可以讀取檔案的內容,檔案物件提供多種讀取檔案內容的方法。開啟test.txt檔案 f open test.txt r 開啟test.txt檔案 f.close 關閉檔案 test.txt檔案有以下內容 hello world.hello python.hello imooc.讀取若干...

Python檔案讀取

python提供了多種方法實現檔案讀取操作 1 read 2 readline 3 readlines 4 xreadlines 很多人也在糾結到底應該選擇哪種方式,甚至疑問在處理大檔案時應該選擇哪種方式,因為擔心檔案過大導致記憶體佔用率過高甚至無法完全載入。其實,這個問題是多餘的,在引入了迭代器和...

python檔案讀取

1.讀取txt檔案 read 讀取整行檔案 readline 讀取一行資料 readines 讀取所有行的資料 讀取txt檔案 user file open user info.txt r lines user file.readlines forline inlines username line...