赞
踩
1.1常用的数据类型
数字、列表、字符串、字典、元组、集合
1.1.1列表
类似于C中的数组,但是与数组不同的是,list可以存储不同类型的数据
创建一个列表
heroList=['小卤蛋','草丛三姐妹','上官怼儿','艾琳',100,10.1]
print(heroList)
hero1="小卤蛋"
print(heroList)
总结:列表使用[]进行创建,每一个元素可用,分开
为什么要使用列表?列表可以将我们需要的很多元素封装到一个容器中
列表的相关操作:
1、 访问列表中的元素 列表名[索引]
print("猴子最爱",heroList[0],"和",heroList[3])
2、 往里添加元素 append是列表的末尾进行添加元素
heroList.append('蒙犽')
print('添加后的列表',heroList)
3、修改
heroList[4]='老卤蛋'
print('修改后的列表',heroList)
4、删除
del heroList[5]
print("操作后的列表",heroList)
生成一个[0,1,2...,20]的列表
可以使用循环创建
创建一个空列表
list1=[]
使用循环不停地append
for i in range(21):
list1.append(i)
print(list1)
for hero in heroList:
print(hero)
for i in range(6):
print(heroList[i])
len()可以检测元素对象个数
for i in range(len(heroList)):
# print(heroList[i])
if heroList[i] == '艾琳':
print('恭喜你选中隐藏英雄')
else:
print('不是隐藏英雄')
Python制作进度条
安装tqdm库
pip install 库的名称
导入tqdm
from tqdm import tqdm
import time
mylist = []
for i in range(20):
mylist.append(i)
#遍历mylist
for x in tqdm(mylist):
time.sleep(1)
字符串
表示 '' 或者 ""
要注意的是
name= "k"o"be"不可取
name= 'k"o"be'
#name="k'o'be"
print(name)
访问
print(name[2])
修改
name[1]='x'
print(name)
name="kobe"
print(name)
常用操作
price= '¥9.9'
字符串的替换
price=price.replace("¥",'')
# print(price)
价格涨价10倍
new_price=float(price)*10
print(new_price)
写一个价值一亿的ai代码
while True:
seg=input('')
seg=seg.replace('么?','!')
print(seg)
strip 去空格操作
name=' neuedu '
print(len(name))
name=name.strip()
print(len(name))
join_将列表变成字符串
li = ['你','好','帅']
disk_path=['B:','Python']
path='\\'.join(disk_path)
print(path)
li=''.join(li)
print(li)
元组
tuple()
list()
int()
str()
创建
元组和列表很相似,只不过不能修改
a=(1,'1',[''])
print(a)
print(type(a))
访问
print(a[2])
a[2]=6
元组的用处
1、写保护,安全,Python内置函数返回的类型都是元组
2、相对于列表来讲,元组更节省空间,效率更高
掌握
1、拥有一个元素的元组
b = (100, 22)
print(type(b))
我们经常使用的组合方式:
list2 = [('a', 22),('b', 33),('c', 99)]
字典
创建字典
info = {'name', '小高高', 'age', 20, 'gender', '???'}
print(type(info))
info = {'name': '小高高', 'age': 20, 'gender': '???'}
print(type(info))
访问字典 通过键访问值
print((info['name']))
访问不存在的键
print(info['add'])
print(info.get('addr'))
当不存在这个键的时候,可以返回默认设置的值,
有这个键就正常返回
print(info.get('addr','天津市西青区'))
修改
info['age'] = 3
print(info)
增加 当字典中不存在这个键时,就会添加
info['addr'] = '天津'
print( info )
删除
del info['age']
print(info)
# 遍历
for k,v in info.items():
print((k,'---->',v))
获取所有键
print(list(info.keys()))
获取所有值
print(list(info.values()))
函数 面向过程
方法 面向对象
Python 中的函数
def 函数名():
函数体
def say_hello(name):
print('hello',name )
say_hello('小高高')
1到任意数之间累加和
def caculate_num(num):
sum_num= 0#存求和
for i in range(1, num+1):
sum_num=sum_num+i
return sum_num
print(caculate_num(99))
爬网页——百度主页和图片
1.获取到网页的源代码,requests
安装requests
pip install requests
import requests
获取指定域名的源代码
response= requests.get('https://www.baidu.com')
响应状态码 200 ok 404 not found
print(response.status_code)
响应的编码方式
设置编码方式
response.encoding = 'utf-8'
print(response.status_code)
print(response.encoding)
获取string类型响应
html_data= response.text
print(html_data)
将爬取的文件写成本地HTML
文件路径,读写模式,编码方式
with open('index.html', 'w', encoding='utf-8')as f:
f.write(html_data)
图片的爬取
图片地址
url='https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1577788354509&di=a8849898b3c2592aa91c33d77f683a4b&imgtype=0&src=http%3A%2F%2Fig.zhaoyangmao.cn%2Fstatic%2Fimg%2Fnews%2F2017%2F70ffebf67e65f9b752d640919953437e9e8d9f8d.jpg'
response2=requests.get(url)
获取byte类型的响应
img_data= response2.content
文件路径,读写模式write binary,编码方式
with open('MI6.jpg', 'wb')as f:
# f.write(img_data)
if response2.status_code==200:
f.write(img_data)
然后提取我们要的信息 xpath
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。