- 博客(4)
- 收藏
- 关注
原创 快慢指针(LeetCode 142 Linked List Cycle II)
142. Linked List Cycle II 题目描述: Given a linked list, return the node where the cycle begins. If there is no cycle, return null. There is a cycle in a linked list if there is some node in the list that can be reached again by continuously following the next
2021-03-23 19:27:38 164
原创 if _name_=='_main_'
if __name__=='__main__':的用法 _name_ 是个什么 __name__相当于标识当前模块名的变量。如果该模块不是被调用模块,则 __name__=‘__main__如果该模块是被导入的,即import进来的,则__name__=‘模块的名称’。 例如:有两个.py文件,一个为sum.py,用于求两数之和的函数,另一个为calculate.py,用于调用sum.py中的...
2020-04-14 16:54:31 263
原创 爬虫爬取网页错误:UnicodeEncodeError: 'gbk' codec can't encode character '\xe7' in position 318
在爬虫爬取网页的html源码写入文件 import requests # 定义get请求 url = 'https://www.baidu.com/' # 发起get请求 res = requests.get(url=url) # 获取响应代码 code = res.status_code print(code) # 响应成功后把网页内容写入文件中 if code == 200: ...
2020-03-07 15:21:52 1996 1
原创 《Python3网络爬虫开发实战》tornado验证程序错误
书中验证代码: import tornado.ioloop import tornado.web class MainHandler(tornado.web.RequestHandler): def get(self): self.write("Hello, world") def make_app(): return tornado.web.Applicati...
2020-03-05 22:34:21 544
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人