利用python 讀寫csv文件
1、讀文件
import csv
csv_reader = csv.reader(open("data.file", encoding="utf-8"))
for row in csv_reader:
print(row)
csv_reader把每一行數(shù)據(jù)轉(zhuǎn)化成了一個list,list中每個元素是一個字符串。
2、寫文件
讀文件時,我們把csv文件讀入列表中,寫文件時會把列表中的元素寫入到csv文件中。
list = ["1", "2", "3", "4"] out = open(outfile, "w") csv_writer = csv.writer(out) csv_writer.writerow(list)
可能遇到的問題:直接使用這種寫法會導(dǎo)致文件每一行后面會多一個空行。
解決辦法如下:
out = open(outfile, "w", newline="") csv_writer = csv.writer(out, dialect="excel") csv_writer.writerow(list)
在stackoverflow上找到了比較經(jīng)典的解釋,原來 python3里面對 str和bytes類型做了嚴格的區(qū)分,不像python2里面某些函數(shù)里可以混用。所以用python3來寫wirterow時,打開文件不要用wb模式,只需要使用w模式,然后帶上newline=''。
3、示例
- 簡單讀寫
import csv
class writer:
def __init__(self):
self.dict = {
"標題": "標題",
"鏈接": "鏈接",
"服務(wù)": "服務(wù)",
"dsr": "dsr",
"店鋪名": "店鋪名",
"價格": "店鋪名",
"付款人數(shù)": "付款人數(shù)",
"發(fā)貨地": "發(fā)貨地",
}
out = open("outfile.csv", "w", newline="")
self.csv_writer = csv.writer(out, dialect="excel")
self.csv_writer.writerow(self.dict)
def writer_to(self, key_value):
self.csv_writer.writerow(key_value)
if __name__ == "__main__":
a = writer()
new = {
"鏈接": "http://www.baidu.com",
"標題": "我是標題",
}
a.dict.update(new)
print(a.dict)
a.writer_to(a.dict.values())
- 結(jié)合爬蟲
import csv
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import TimeoutException, NoSuchElementException
from selenium.webdriver.common.action_chains import ActionChains
driver = ["1", "2"]
colspan = ["1", "2"]
try:
out = open("類目.csv", "w", newline="")
except PermissionError:
print("文件被其他程序占用")
input("")
csv_writer = csv.writer(out, dialect="excel")
csv_writer.writerow(["寶貝ID", "類目"])
def open_chrome():
driver[0] = webdriver.Chrome()
driver[0].get("https://www.dianchacha.com")
input("請登陸后按回車:")
def EC_located(one_group, value):
"""
目的:簡化代碼長度,參數(shù)1選擇one或者group切換選中模式
:param value:要找的值【CSS選擇器】
:return:選擇到的對象
"""
wait = WebDriverWait(driver[0], 10)
if one_group == "one":
try:
ecl = wait.until(EC.presence_of_element_located((By.CSS_SELECTOR, value)))
return ecl
except TimeoutException:
print(value, "1元素未加載成功,等待超時")
else:
try:
ecl = wait.until(
EC.presence_of_all_elements_located((By.CSS_SELECTOR, value))
)
return ecl
except TimeoutException:
print(value, "1元素---組---未加載成功,等待超時")
def operating(ID):
# 先獲取ID輸入框
driver[0].get("https://www.dianchacha.com/item/info/index/iid/" + ID)
html = driver[0].page_source
if "未能找到親的寶貝" not in html:
colspans = EC_located("group", ".colspan-1")
colspan[0] = str(colspans[1].text).replace("寶貝類目: ", "")
else:
return operating(ID)
print(colspan)
def writer_txt():
csv_writer.writerow([url[0], colspan[0]])
print("保存", url[0], colspan[0], "成功")
url = ["0", "1"]
def main():
open_chrome()
file = "寶貝ID.txt"
with open(file) as f:
for line in f.readlines():
url[0] = line
print(line)
operating(url[0])
writer_txt()
out.close()
print("已完成")
if __name__ == "__main__":
main()
以上就是利用python 讀寫csv文件的詳細內(nèi)容,更多關(guān)于python 讀寫csv文件的資料請關(guān)注腳本之家其它相關(guān)文章!
相關(guān)文章
Python使用Altair創(chuàng)建交互式數(shù)據(jù)可視化的操作指南
Altair 是一個基于 Vega-Lite 的 Python 數(shù)據(jù)可視化庫,它旨在簡化數(shù)據(jù)可視化的創(chuàng)建過程,尤其適用于統(tǒng)計圖表的生成,Altair 強調(diào)聲明式編碼方式,通過簡單的語法,用戶能夠快速創(chuàng)建復(fù)雜的交互式圖表,本文將介紹 Altair 的基礎(chǔ)用法、常見圖表類型,需要的朋友可以參考下2024-12-12
python作圖基礎(chǔ)之plt.contour實例詳解
contour和contourf都是畫三維等高線圖的,下面這篇文章主要給大家介紹了關(guān)于python作圖基礎(chǔ)操作之plt.contour的相關(guān)資料,文中通過實例代碼介紹的非常詳細,需要的朋友可以參考下2022-06-06
關(guān)于Python正則表達式 findall函數(shù)問題詳解
在寫正則表達式的時候總會遇到不少的問題,本文講述了Python正則表達式中 findall()函數(shù)和多個表達式元組相遇的時候會出現(xiàn)的問題2018-03-03
Python中l(wèi)ogging日志模塊代碼調(diào)試過程詳解
這篇文章主要介紹了Python中l(wèi)ogging日志模塊代碼調(diào)試,今天來看看如何在代碼中定義日志,并探討日志的權(quán)限,需要的朋友可以參考下2023-04-04
使用python將excel數(shù)據(jù)導(dǎo)入數(shù)據(jù)庫過程詳解
這篇文章主要介紹了使用python將excel數(shù)據(jù)導(dǎo)入數(shù)據(jù)庫過程詳解,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下2019-08-08

