# 讀取csv檔案 (資料以逗號分割)
import csv
csvfile = open('data.csv', 'rb')
reader = csv.reader(csvfile) # read接收檔案物件,返回資料列表
reader1 = csv.dictreader(csvfile) # 返回資料字典
for row in reader:
print(row)
# json檔案(資料傳輸,**運用, 形式如字典 )
import json
json_data = open('c:\\users\\admin\\desktop\\python資料處理(資料)data-wrangling-master\\data-wrangling-master\\data\\chp3\\data-text.json').read()
data = json.loads(json_data) # loads接收字串
for item in data:
print(item)
# 匯入xml檔案
from xml.etree import elementtree as et
tree = et.parse(r'c:\users\admin\desktop\python資料處理(資料)data-wrangling-master\data-wrangling-master\data\chp3\data-text.xml')
root = tree.getroot()
data = root.find('data')
print(list(data))
python高階讀取檔案 Python讀取檔案內容
開啟檔案之後,就可以讀取檔案的內容,檔案物件提供多種讀取檔案內容的方法。開啟test.txt檔案 f open test.txt r 開啟test.txt檔案 f.close 關閉檔案 test.txt檔案有以下內容 hello world.hello python.hello imooc.讀取若干...
python讀取配置 python讀取配置檔案
本機 python3.5 1.需要安裝configerparser py2是 configparser 2.編寫 執行前 coding utf8 import configparser conf configparser.configparser conf.read f python clstudy...
python讀取大檔案 python讀取大檔案
python讀取檔案對各列進行索引 可以用readlines,也可以用readline,如果是大檔案一般就用readlined a in open testfile.txt r for line in a in columnssplit line.rstrip split d columnsspli...