Python基础语法
常用的数据结构
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')
Python中的循环
for循环
name = 'neusoft'
for x in name:
print(x)
if x == 's':
print('哈哈')
range循环次数
for i in range(1,100,2):
print('对不起老婆,我错了,这是我',i,'次向你道歉')
循环列表
list1 = []
# 使用循环不停地append
for i in range(21):
list1.append(i)
print(list1)
遍历列表
heroList = ["鲁班七号","安琪拉","李白","后羿",100,"char"]
print(heroList)
#for hero in heroList:
# print(hero)
for i in range(len(heroList)):
# print(heroList[i])
if heroList[i] == '后羿':
print('恭喜你选中了隐藏英雄')
else:
print('不是隐藏英雄')
字符串
# 表示' ' " "
# 要注意的是
name = "k'o'be"
print(name)
# 访问
print(name[2])
# 修改
# name[1] = 'x'
# print(name)
name = "kobe"
print(name)
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)
常用操作
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)
去空格操作
name = ' neuedu '
print(len(name))
name = name.strip()
print(len(name))
将列表变成字符串
li = ['你','好','帅']
disk_path = ['E:','BaiduNetdiskDownload']
path = '\\'.join(disk_path)
print(path)
li = ''.join(li)
print(li)
元组
a = (1, '1', 3)
print(a)
print(type(a))
# 访问
print(a[2])
a[2] = 6
字典
# 创建字典
info = {'name': '123', 'age': 22, 'gender': 'female'}
print(type(info))
# 访问字典 通过键访问值
print(info['name'])
# 访问不存在的键
# print(info['addr'])
# 当不存在这个键的时候,可以返回默认设置的值
# 当有这个键就正常返回
print(info.get('addr','抚顺市'))
# 修改
info['age'] = 3
print(info)
# 增加 当字典中不存在这个键,就会添加
info['addr'] = '通辽'
print(info)
# 删除
del info['age']
print(info)
遍历
info = {'name': '123', 'age': 22, 'gender': 'female'}
# 遍历
for k,v in info.items():
print(k, '---->', v)
# 获取所有键
print(list(info.keys()))
# 获取所有值
print(list(info.values()))
函数
函数 面向过程的
方法 面向对象的
Python 中的函数
def 函数名():
函数体
# 1到任意数之间累加和 5050
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))
爬网页源代码
# 获取到网页的源代码, 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.encoding)
# 获取 响应的string类型的响应
html_data = response.text
print(html_data)
# 将爬取的文件写成 本地 html
# 文件路径 读写模式 编码方式
with open('index.html', 'w',encoding='utf-8')as f:
f.write(html_data)
图片爬取
import requests
print(response.status_code)
response.encoding = 'utf-8'
print(response.encoding)
html_data = response.text
print(html_data)
with open('index.html', 'w',encoding='utf-8')as f:
f.write(html_data)
ur1 = 'https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2955714677,144559322&fm=26&gp=0.jpg'
response2 = requests.get(ur1)
# 获取byte类型的响应
img_data = response2.content
# 文件路径 读写模式 编码方式
with open('xiaoxiong.png', 'wb') as f:
if response2.status_code == 200:
f.write(img_data)