摘要: from typing import Listclass Solution: def maxProfit(self, prices: List[int]) -> int: length = len(prices) if length <= 1:return 0 dp=[ [[0,0,0],[0,0, 阅读全文
posted @ 2020-07-02 16:29 月为暮 阅读(300) 评论(0) 推荐(0) 编辑
摘要: # 爬取豆瓣最受欢迎的250部电影,并写入Excel表格中import requests,xlwtfrom bs4 import BeautifulSoup# 请求豆瓣网站,获取网页源码def request_douban(url): try : # 请求url headers = {"User-A 阅读全文
posted @ 2020-07-02 13:40 月为暮 阅读(306) 评论(0) 推荐(0) 编辑