摘要:
import requests print(requests.get('http://pic1.win4000.com/wallpaper/2018-03-20/5ab0bf15b4681.jpg').content)#抓取图片把text换成content with open('004.jpg','wb')as f:#w+ :检测文件不存在,自动创建,encoding解码 f.write... 阅读全文
摘要:
import urllib.request url='http://pic1.win4000.com/wallpaper/2017-11-07/5a017d438ae32.jpg' # 第一种方式 response = urllib.request.urlopen(url) with open('11.jpg', 'wb') as fp: fp.write(response.read... 阅读全文
摘要:
import requests # socket-->http-->requests response=requests.get('https://tieba.baidu.com/f?kw=%E6%B5%81%E6%B5%AA%E6%B1%89') print(response.text) with open('12.html','w+',encoding='utf8')as f: f.... 阅读全文
摘要:
# 列表 lt = [1, 2, 'hello', 3.14, True] print(lt, type(lt)) # 通过下标获取元素,有越界问题 print(lt[1])#下标是从零开始的,下标为一,取出列表里面第二个元素 # 元组 tp = (1, 2, [3, 4, 5]) print(tp, type(tp)) # 也是通过下标进行访问 print(tp[2]) print(tp[2... 阅读全文
摘要:
单引号和双引号无区别 阅读全文
摘要:
# 整型 a = 250 print(a, type(a)) # 浮点 b = 3.14 print(b, type(b)) # 科学计数法 c = 3.1415926e-3 print(c, type(c)) # 复数:了解 d = 2 + 3j print(d, type(d)) # 布尔 a = True b = False print(a, type(a)) pri... 阅读全文
摘要:
a = 10 b = 20 # 输出:可以一次打印多个数据 # sep:多个数据的分割内容 # end:结束时的内容,默认是'\n',表示换行 print(a,b) print(a, b, sep=',', end='') 阅读全文
摘要:
#定义变量#单一赋值a=10print(a)#10#统一赋值b=c=d=20print(b,c,d)#20 20 20#对称赋值e,f=30,40print(e,f)# 30 40# 删除变量del aprint(a)# 此处会报NameError错 阅读全文
摘要:
python 里面有些单词是不能用来命名的,这些单词在 python里面具有特出的含义,那怎么知道是哪些词呢,今天教大家一个方法: 阅读全文