python学习笔记
散落人间小陈的学习记录
目前写的所有文章都是自己在练习中遇到的一些问题,并且解决之后的方法总结。可能很繁琐,可能不专业,但我想进步。
展开
-
python错误:SyntaxError: can‘t assign to keyword
python错误:SyntaxError: can’t assign to keyword如果运行一下代码:True = 1对True 进行赋值,就会把以上错误,这是因为True在python里面是保留字,保留字不能作为变量。Python里面有25个保留字,这些都不能设置为变量...原创 2021-01-25 00:48:24 · 1754 阅读 · 0 评论 -
Python运行jieba出现Building prefix dict from the default dictionary ...解决办法(会显示正确结果)
Python运行jieba出现Building prefix dict from the default dictionary …解决办法这是我运行了代码出现的错误,但是我的结果还是可以正常显示的Building prefix dict from the default dictionary ...Loading model from cache C:\Users\95114\AppData\Local\Temp\jieba.cacheLoading model cost 0.842 second原创 2021-01-18 21:05:13 · 53120 阅读 · 41 评论 -
最简单的爬虫练习:爬取百度页面的基本信息
爬取一个简单的网页,我用到的是urlopen函数格式为:urlopen(url)其中url为想要爬取的页面地址# 最简单的爬虫练习:爬取百度页面的基本信息# 从urllib的request模块中导入urlopen函数from urllib.request import urlopen# 想要爬取的网页地址url = "http://www.baidu.com"# 用函数urlopen获取信息并传递给变量responseresponse = urlopen(url)#读取全部内容all原创 2021-01-14 01:37:05 · 1047 阅读 · 0 评论