標籤

BAT (38) shell (34) Virtual Machine (33) Xubuntu (29) acfs (25) PHP (24) CentOS (21) Virtul Box (20) 編輯器 (17) 資料庫 (15) lubuntu (13) windows (13) CPP (12) ubuntu (12) chrome (11) laravel (10) Docker (9) Python (9) 5A88 (7) VMware (6) 資料結構 (6) Javascript (5) Node (5) Proxmox VE (5) 公告系統 (5) 程式積木 (5) Android Studio (4) ANN (3) OB2D2016x64 (3) Xoops (3) clonezilla (3) samba (3) 公文 (3) 其他 (3) 硬體 (3) API (2) Android (2) AppInvent2 (2) Html (2) Hyper-V (2) Nas (2) botnet (2) mbot (2) swift (2) wordpress (2) 樣板 (2) 防火牆 (2) AD的應用 (1) Ansible (1) Arduino (1) CSS (1) GitLab (1) HA Proxy (1) LegoEV3 (1) PowerShell (1) Scratch (1) VM (1) XenServer (1) kotlin (1) linuxmint (1) lxc (1)

2019年7月3日 星期三

python 3.7 讀取CSV檔案,將一行一行資料內容,轉成串列

CSV檔案名稱:PythonCSVTest.csv
CSV檔案位置:C:\Users\m\Desktop\
CSV檔案內容:
test01,test02,test03,test04,test05,test06,test07,test08,test09,test10
test11,test12,test13,test14,test15,test16,test17,test18,test19,test20
test21,test22,test23,test24,test25,test26,test27,test28,test29,test30
test31,test32,test33,test34,test35,test36,test37,test38,test39,test40
test41,test42,test43,test44,test45,test46,test47,test48,test49,test50

程式名稱:PythonCSVTest.py
程式位置:C:\Users\m\Desktop\
程式內容:
fp = open('PythonCSVTest.csv',"r")
lines = fp.readlines()
fp.close()
list_lines = []
for i in range(len(lines)):
     lines[i] = lines[i].strip('\n')
     temp = lines[i][:]
     temp = temp.replace(","," ")
     temp = temp.split()
     for j in range(len(temp)):
        list_lines.append(temp[j])
print(list_lines)

執行結果:
資料來源:
1.Python replace()方法
2.Python 逐行讀取檔案內容的 4 個方法
3.python按行读取文件,如何去掉换行符"\n"

沒有留言:

張貼留言

在 Windows 10 x64 1909版,使用BAT快速安裝公文系統與人事服務網(自然人憑證)版

相關內容移往 https://skjhcreator.blogspot.com/2021/02/windows-10-x64-1909bat.html