鱼C论坛

 找回密码
 立即注册
查看: 1378|回复: 3

[已解决]【求助】学习使用 Python 读写 Excel 文件(1),代码运行后没有Excel文件

[复制链接]
发表于 2020-4-28 05:37:41 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
学习使用 Python 读写 Excel 文件(1),将TOP250电影排行榜保存为excel文件,文件运行后没有报错
1.jpg
但是在桌面没有生成excel文件
请教各位大侠,是什么原因?
top250.rar (1007 Bytes, 下载次数: 7)
最佳答案
2020-4-28 07:31:29
1、main()函数最后加上save_to_excel(result)
2、save_to_excel()函数加上wb.guess_types = True
3、以后直接发代码,真的不想下载
小甲鱼最新课程 -> https://ilovefishc.com
回复

使用道具 举报

发表于 2020-4-28 07:31:29 | 显示全部楼层    本楼为最佳答案   
1、main()函数最后加上save_to_excel(result)
2、save_to_excel()函数加上wb.guess_types = True
3、以后直接发代码,真的不想下载
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2020-4-28 09:18:06 | 显示全部楼层
你定义了save_to_excel(),但是没调用,所以不会生成文件,在main最后加一句save_to_excel(result)就可以了:PS:以后发代码这样发:
  1. import requests
  2. import bs4
  3. import re
  4. import openpyxl

  5. def open_url(url):
  6.     # 使用代理
  7.     # proxies = {"http": "127.0.0.1:1080", "https": "127.0.0.1:1080"}
  8.     headers = {'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.98 Safari/537.36'}

  9.     # res = requests.get(url, headers=headers, proxies=proxies)
  10.     res = requests.get(url, headers=headers)

  11.     return res

  12. def find_movies(res):
  13.     soup = bs4.BeautifulSoup(res.text, 'html.parser')

  14.     # 电影名
  15.     movies = []
  16.     targets = soup.find_all("div", class_="hd")
  17.     for each in targets:
  18.         movies.append(each.a.span.text)

  19.     # 评分
  20.     ranks = []
  21.     targets = soup.find_all("span", class_="rating_num")
  22.     for each in targets:
  23.         ranks.append(each.text)

  24.     # 资料
  25.     messages = []
  26.     targets = soup.find_all("div", class_="bd")
  27.     for each in targets:
  28.         try:
  29.             messages.append(each.p.text.split('\n')[1].strip() + each.p.text.split('\n')[2].strip())
  30.         except:
  31.             continue

  32.     result = []
  33.     length = len(movies)
  34.     for i in range(length):
  35.         result.append([movies[i], ranks[i], messages[i]])

  36.     return result

  37. # 找出一共有多少个页面
  38. def find_depth(res):
  39.     soup = bs4.BeautifulSoup(res.text, 'html.parser')
  40.     depth = soup.find('span', class_='next').previous_sibling.previous_sibling.text

  41.     return int(depth)

  42. def main():
  43.     host = "https://movie.douban.com/top250"
  44.     res = open_url(host)
  45.     depth = find_depth(res)

  46.     result = []
  47.     for i in range(depth):
  48.         url = host + '/?start=' + str(25 * i)
  49.         res = open_url(url)
  50.         result.extend(find_movies(res))
  51.     save_to_excel(result)                        #<--漏了这句

  52. def save_to_excel(result):
  53.     wb = openpyxl.Workbook()
  54.     ws = wb.active

  55.     ws['A1'] = "电影名称"
  56.     ws['B1'] = "评分"
  57.     ws['C1'] = "资料"

  58.     for each in result:
  59.         ws.append(each)

  60.     wb.save("豆瓣TOP250电影.xlsx")
  61.    
  62. if __name__ == "__main__":
  63.     main()
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-28 10:29:05 | 显示全部楼层
谢谢,谢谢,非常感谢
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-6-18 10:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表