
python
起名太费脑细胞
知识在于积累 天才在于勤奋
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python Scrapy 入门
1. 准备环境 Python 、Scrapy、 IDE(Pycharm) 2. 爬取目标分析 北京七天的天气 url:http://www.weather.com.cn/weather/101010100.shtml 需要抓取的字段, date(日期) 、weather(天气)、temperature(温度)、windDirection(风...原创 2019-10-15 14:46:25 · 165 阅读 · 0 评论 -
python 抽奖概率
代码: # -*- coding: utf-8 -*- import random # 抽奖概率(可设置) randomList = [] # 奖项 10个 gift = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0] # 设置礼品和抽奖百分比概率 r = [{'giftIndex': 0, 'value': 1}, {'giftIndex': 1, 'value'...原创 2019-06-21 15:32:31 · 4623 阅读 · 0 评论 -
window 安装/卸载 psycopg2
查看python 版本 python --version 下载对应版本的 psycopg2 :https://pypi.org/project/psycopg2/#files 使用pip安装下载的文件(安装成功即可) pip install psycopg2-2.8.3-cp27-cp27m-win_amd64.whl ---------------------...转载 2019-07-17 16:10:13 · 1082 阅读 · 0 评论