网站首页 文章专栏
何冰华个人网站
python采集接口数据
采集其他网页接口的数据:fromqueueimportQueue importrequests importthreading importtime classProducter(threading
何冰华个人网站
python常用数学函数
常用函数:特别注意,大部分可用函数都存在于math包中,要先引入math包才能用函数返回值 ( 描述 )eg:abs(x)返回数字的绝对值abs(-10) 返回 10ceil(x)返回数字的上入整数m
何冰华个人网站
Python基础篇---遍历
#遍历字典 temp_1={'a':'A','b':'B'} fork,vintemp_1.items():#遍历key和value
何冰华个人网站
Python基础篇---列表与元组操作
#列表操作 类似于字符串及PHP的数组操作test_list=['123','abc','ABC'];print (test_list[0]) #123
何冰华个人网站
Python基础篇---字符串操作
str='abcdefg'; print(str[0])#a print(str[1:5]);#截取返回bcde print(str[-3:]);#efg print(str*
何冰华个人网站
python3.6 window下安装 scrapy
window下,3.6版本的安装scrapy需要先安装一系列的插件1、通过CMD进入python环境 执行命令importpip;print(pip.pep425tags.get_supported(