91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python怎樣讀寫csv文件

發布時間:2021-08-13 13:41:40 來源:億速云 閱讀:182 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關python怎樣讀寫csv文件的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

1.爬取豆瓣top250書籍

import requests
import json
import csv
from bs4 import BeautifulSoup
books = []
def book_name(url):
 res = requests.get(url)
 html = res.text
 soup = BeautifulSoup(html, 'html.parser')
 items = soup.find(class_="grid-16-8 clearfix").find(class_="indent").find_all('table')
 for i in items:
  book = []
  title = i.find(class_="pl2").find('a')
  book.append('《' + title.text.replace(' ', '').replace('\n', '') + '》')
  star = i.find(class_="star clearfix").find(class_="rating_nums")
  book.append(star.text + '分')
  try:
   brief = i.find(class_="quote").find(class_="inq")
  except AttributeError:
   book.append('”暫無簡介“')
  else:
   book.append(brief.text)
  link = i.find(class_="pl2").find('a')['href']
  book.append(link)
  global books
  books.append(book)
  print(book)
 try:
  next = soup.find(class_="paginator").find(class_="next").find('a')['href']
 # 翻到最后一頁
 except TypeError:
  return 0
 else:
  return next
next = 'https://book.douban.com/top250?start=0&filter='
count = 0
while next != 0:
 count += 1
 next = book_name(next)
 print('-----------以上是第' + str(count) + '頁的內容-----------')
csv_file = open('D:/top250_books.csv', 'w', newline='', encoding='utf-8')
w = csv.writer(csv_file)
w.writerow(['書名', '評分', '簡介', '鏈接'])
for b in books:
 w.writerow(b)

結果

python怎樣讀寫csv文件

2.把評分為9.0的書籍保存到book_out.csv文件中

'''
1.爬取豆瓣評分排行前250本書,保存為top250.csv
2.讀取top250.csv文件,把評分為9.0以上的書籍保存到另外一個csv文件中
'''
import csv
#打開的時候必須用encoding='utf-8',否則報錯
with open('top250.csv', encoding='utf-8') as rf:
 reader = csv.reader(rf)
 #讀取頭部
 headers = next(reader)
 with open('books_out.csv', 'w', encoding='utf-8') as wf:
  writer = csv.writer(wf)
  #把頭部信息寫進去
  writer.writerow(headers)
  for book in reader:
   #獲取評分
   score = book[1]
   #把評分大于9.0的過濾出來
   if score and float(score) >= 9.0:
    writer.writerow(book)

感謝各位的閱讀!關于“python怎樣讀寫csv文件”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

镇赉县| 松原市| 那曲县| 京山县| 澄城县| 高州市| 同心县| 班玛县| 民乐县| 尼木县| 信阳市| 英山县| 邯郸市| 临沧市| 赣榆县| 措美县| 浦城县| 陆良县| 建昌县| 溆浦县| 繁峙县| 东阿县| 江口县| 榆林市| 库车县| 虎林市| 桦川县| 湛江市| 兴文县| 叙永县| 安顺市| 铜梁县| 平远县| 兰考县| 乌拉特前旗| 九台市| 长治市| 波密县| 岳阳县| 东乌珠穆沁旗| 扬中市|