Python中讀取csv檔案內容方法

2022-07-26 08:21:12 字數 393 閱讀 8150

[email protected]

[email protected]

[email protected]

csv檔案內容如上圖,首先匯入csv包,呼叫csv中的方法reader()建立乙個物件,由於使用print data 列印出來的內容是集合,所以要想獲取集合中某個具體值如「郵箱」,需要利用列表遍歷元素的方法操作。如下**:

#coding=utf-8

import csv

my_file= 'data.csv'

date=csv.reader(file(my_file,'rb'))

for user in date:

for j in range(len(user)):

print user[1]

break

python讀取csv檔案

csv格式資料 import csvcsv資料儲存,包括三種方式 直接寫入csv檔案 寫入 一條或者多條資料 import csv header line1 line2 line3 rows 1,2,3 4,5,6 7,8,9 with open test.csv w as f file csv.w...

python讀取CSV檔案

reader讀取csv檔案,再用for迴圈遍歷 import csv with open customer.csv as f f csv csv.reader f for row in f csv print row 0 執行結果 id test 932467 1111 932468 2 93246...

python讀取csv檔案

在python裡面,讀取或寫入csv檔案時,首先要import csv這個庫,然後利用這個庫提供的方法進行對檔案的讀寫。0x01 獲取每一行 讀取csv檔案,用的是csv.reader 這個方法。返回結果是乙個 csv.reader的物件,我們可以對這個物件進行遍歷,輸出每一行,某一行,或某一列。如...