上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: https://jingyan.baidu.com/article/4853e1e54b845e1909f7268f.html 阅读全文
posted @ 2020-12-18 22:26 JRS077 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 1. 和数字相关 1.1 数据类型 1.2 进制转换 1.3 数学运算 2. 和数据结构相关 2.1 序列 2.2 数据集合 2.3 相关内置函数 3. 和作用域相关 4. 和迭代器生成器相关 5. 字符串类型代码的执行 6. 输入输出 7. 内存相关 8. 文件操作相关 9. 模块相关 10. 帮 阅读全文
posted @ 2020-11-26 21:59 JRS077 阅读(347) 评论(0) 推荐(0) 编辑
摘要: #1. 爬取强大的度娘,打印页面信息 #第一个爬虫示例,爬取度娘页面 import requests #导入爬虫的库,不然调用不了爬虫函数 response = requests.get("http://www.baidu.com") #生成一个respon对象 response.encoding 阅读全文
posted @ 2020-10-19 22:33 JRS077 阅读(3073) 评论(0) 推荐(0) 编辑
摘要: 1. 获取昨天日期 引入datetime模块 import datetime def getYesterday(): today = datetime.date.today() #返回当前本地日期 # oneday = datetime.timedelta(day=1) #两个日期对象的最小间隔 o 阅读全文
posted @ 2020-10-16 23:01 JRS077 阅读(271) 评论(0) 推荐(0) 编辑
摘要: <https://www.cnblogs.com/gufengchen/p/11038029.html> 阅读全文
posted @ 2020-09-27 16:25 JRS077 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 1. 控制你的代码 Head First Python支持网站http://python.itcarlow.ie/resources.html,下载webapp.zip, 解压到硬盘。 点击以下红下划线链接下载。 2. CGI让Web服务器运行程序 用python打开simple_htpd.py并R 阅读全文
posted @ 2020-09-27 16:24 JRS077 阅读(168) 评论(0) 推荐(0) 编辑
摘要: http://python.itcarlow.ie/resources.html 阅读全文
posted @ 2020-09-20 22:40 JRS077 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 把文本文件中的数据转换为AthleteList对象实例,存储在一个字典中(按选手索引),然后保存为一个pickle文件。 # Author kevin_hou import pickle from athletelist import AthleteList def get_coach_data(f 阅读全文
posted @ 2020-09-20 19:42 JRS077 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 问题:from athletelist import AthleteList出现红色下滑波浪线警告 经过个人网上搜索了解,这个问题是因为python找不到相关的.py文件,无法导入athletelist.py模块。 具体操作如下: 1. athletelist->Refactor->Move->H: 阅读全文
posted @ 2020-09-20 18:04 JRS077 阅读(228) 评论(0) 推荐(0) 编辑
摘要: # Author kevin_hou def sanitize(time_string): #格式化时间 if '-' in time_string: splitter = '-' elif ':' in time_string: splitter = ':' else: return (time_ 阅读全文
posted @ 2020-09-16 22:32 JRS077 阅读(242) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 下一页