python(一) 檔案操作

2021-10-01 13:08:18 字數 1685 閱讀 4576

my_file=

open

('my file.txt'

,'w'

) #用法:

open

('檔名'

,'形式'

), 其中形式有'w'

:write;

'r':read.

my_file.

write

(text) #該語句會寫入先前定義好的 text

my_file.

close

() #關閉檔案

""""

this is my first test.

this is the second line.

this the third line.

""""

獲取statlo**ehiclesilhouettes路徑下的所有檔名

trainfile=listdir(

"./statlo**ehiclesilhouettes"

)num=

len(trainfile)

for i in

range(0

,num)

:print

(str

(i)+

":"+trainfile[i]

)

輸出如下

$ python3  wyp_read_data.py 

0:xaa.dat.txt

1:xae.dat.txt

2:xah.dat.txt

3:xad.dat.txt

4:xag.dat.txt

5:xaf.dat.txt

6:xai.dat.txt

7:xab.dat.txt

8:xac.dat.txt

#載入資料

defdatatoarray

(fname)

: arr=

temp_file =

open

(fname,

"r+"

)#獲取本檔案內的所有行

for thisline in temp_file:

temp_list = thisline[:-

1].split(

' ')

arr=npy.array(temp_list[0:

19])print

(arr)

temp_file.close(

)return arr

實際上

#載入資料

def datatoarray

(fname)

: arr=

temp_file =

open

(fname,

"r+"

) # 下面這一行,切片去掉換行符,再以『 』分割字串 ,得到乙個列表

arr =

[i[:-1

].split

(' ')[

0:19]

for i in temp_file.

readlines()

]#print(arr)

return arr

linux 大全一 檔案目錄操作

pwd 檢視當前所在路勁 ls ahli 檢視所有檔案的大小和詳細資訊和編號 檔名表示隱藏檔案 e 結尾的斷行符以 顯示 t tab按鍵以 i顯示 v 列出看不來的特殊字元 b和 n 列出行號,前者空白行不標記行號,後者要標記。head,tail n 11 filename 檢視頭或尾11行。預設顯...

Linux 指令(一)檔案 目錄操作

1.建立目錄 mkdir 格式 mkdir option directory.選項 p 遞迴建立 v 建立時提示 例 root ubuntu home eko x mkdir pv a b c mkdir created directory a mkdir created directory a b...

nodejs fs模組 一 檔案模組操作2

可以不通過以檔案描述符操作的檔案操作函式 讀取檔案 fs.readfile path,options,callback 讀取檔案 path 檔名或檔案描述符 options encoding 編碼 預設utf8 flag 預設為r 讀取方式 callback err data 檔案內容 fs.rea...