Python第二天

1.if elif语句

score = 80
if score >=90 and score <=100:
print('你的考试等级为A')
elif score >=80 and score < 90:
print('你的考试等级为B')
elif score >= 70 and score < 80:
print('你的考试等级为C')
elif score >= 60 and score < 70:
print('你的考试等级为D')
elif score < 60:
print('你的考试等级为F')

2.Python中for循环

格式:

for 临时变量 in 可迭代对象

循环体

name = 'neusoft'
for x in name:
print(x)
if x == 's':
print('哈哈')

例题:道歉一百次

for i in range(1,101):
print('对不起,这是我',i,'向你道歉')

问题讨论

循环次数哪里去了?
range()可以写循环次数
起始位置省略默认为0,步长省略为1,范围是左闭右开
这个X是什么意思? x是临时变量不用提前声明 Python自动为你创建

3.常用数据类型

数字、列表、字符串、字典、元组、聚合

函数

生成一个[0,1……20]的列表
可以使用循环来创建

创建一个空列表

list1 = []

使用循环不停的append

for i in range(21):
list1.append(i)
print(list1)

遍历heroList

for hero in heroList:
print(hero)

len() 可以检测对象的元素对个数

for i in range(len(heroList)):
# print(heroList[i])
if heroList[i] == '后裔':
print('恭喜你选中了隐藏英雄')
else:
print('不是隐藏英雄')

4.Python制作进度条

安装 tqdm库
pip install 库的名称
导入 tqdm

from tqdm import tqdm
import time
mylist = []
for i in range(10):
mylist.append(i)

遍历mylist

for x in tqdm(mylist):
time.sleep(2)

5. 字符串

表示 '' ""
要注意的是

name = "kobe"
name = 'k"o"be'
print(name)

访问

print(name[2])

修改 字符串不可修改,重新定义变量

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()

join 将列表变成字符串

li = ['你','好','吗']
disk_path = ['C:','Users','31001','Desktop','图片']
path = '\'.join(disk_path)
print(path)
li = ''.join(li)
print(li)

6.元组

tuple()、 list() 、int()、str()

创建

元组和列表很相似,只不过不能修改

a = (1,'1',3)
print(a)
print(type(a))

访问

print(a[2])
a[2] = 6

元组的用处;

1.写保护,安全,Python内置函数返回的类型是元组
2.相对列表来讲,元组跟那个节省空间,效率更高

掌握

1.拥有一个元素的元组

b = (100,)
print(type(b))

我们经常使用的组合方式:

list2 = [('a',22),('b',33),('c',44)]

7.字典

创建字典 key-value

info = {'name':'小爱心','age':6,'gender':'female'}
print(type(info))

访问字典 通过建访问值

print(info['name'])

访问不存在的键

当不存在这个键的时候,可以返回设置默认的值

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()))

8. 函数 面向过程

方法 面向对象

Python中的函数

格式

def 函数名():
函数体
def say_hello(name):
print('hello',name)
say_hello('neusoft')

一到任意数之间的累加和

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(100))

9.获取到网页源代码、图片 requests

安装requests

pip install requests
import requests

获取指定域名的源代码

response = requests.get('https://www.baidu.com')

响应状态码 200 ok 400 not found

print(response.status_code)

响应编码方式

response.encoding = 'utf-8'
print(response.status_code)
print(response.encoding)

获取tring 类型的响应

html_data = response.text
print(html_data)

将爬取的文件写成 本地html

文件路径 读写模式 编码模式

with open('index.html','w',encoding='utf-8') as f:
f.write(html_data)

图片爬取 图片地址

url='http://g.hiphotos.baidu.com/zhidao/pic/item/c83d70cf3bc79f3d6e7bf85db8a1cd11738b29c0.jpg'
response2 =requests.get(url)

获取byte类型的响应

img_data = response2.content

文件路径 读写模式write binary 编码模式

with open('kebi.png','wb',) as f:
if response2.status_code == 200:
f.write(img_data)

你可能感兴趣的:(Python第二天)