Python第二天

Python中的循环:for循环

格式:
for 临时变量 in 可迭代对象
name ='Neusoft'
for x in name:   #range(起始位置,终止位置,步长)可以写循环次数
#起始位置默认为0,步长省略为1,范围是左闭右开
     print(x)#x是临时变量,不用声明 Python自动为你创建
     if x=='s':
         print('哈哈')
示例:给女朋友道歉一百次
 for i in range(1,101):
     print('对不起老婆我错了,这是我',i,'次向你道歉')

1.1常用的数据类型

生成一个[0,1,2.....20]的列表,可以使用循环来创建
list1=[]# 首先创建一个空的列表
 for i in range(21):
     list1.append(i)#将数据添加到列表中
     print(list1)#每次循环都输出一下
遍历heroList
 heroList = ['鲁班七号', "安琪拉", "李白", '后羿', 100, 10.1]
 print(heroList)
方法一:for hero in heroList:
     print(hero)
方法二:for i in range(6):
     print(heroList[i])
示例:王者荣耀
 for i in range(len(heroList)):
     print(heroList[i])
     if heroList[i]=='后羿':
         print('恭喜你选中隐藏英雄')
     else:
         print('不是隐藏英雄')

Python制作进度条

安装tqdm库:pip install 库的名称
两种方法:Terminal输入pip install tqdm;Settings中下载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="kobe"
# 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=['易烊千玺','超级','handsome','帅气']
 li=''.join(li)
 print(li)
 disk_path=['C:','Users','Administrators','Desktop','CCF']
 path='\\'.join(disk_path)
 print(path)

元组:tuple()、list()、int()、str()

创建
 a=(1,'1',3)
 print(a)
 print(type(a))
访问
 print(a[2])
 a[2]=6
元组的用处:
写保护,安全,Python内置函数返回的类型都是元组;
相对列表来讲,元组更节省空间
拥有一个元素的元组
 b=(100,)
 print(type(b))
 list2=[('a',22),('b',33),('c',99)]

字典

创建字典
# info={'name':'崔天驰','age':18,'gender':'female'}
# print(type(info))
访问字典 通过建访问值
# print(info['name'])
访问不想存在的键
# print(info['add'])
# 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.keys()))
# 获取所有的值
# print(list(info.values()))

Python中的函数

格式
 def  函数名():
      函数体
示例
# def say_hello(name):
#     print('hello',name)
# say_hello('neusoft')
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(100))#注意放的位置顺序

爬虫方法

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.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=1577788036628&di=1157dadf7ba2d62a143d4f1b703518e8&imgtype=0&src=http%3A%2F%2Fimg2.ixinwei.com%2Fiww201912%2F187579.jpg'
response2 = requests.get(url)
#获得byte类型的响应
img_data = response2.content
#文件路径,读写模式write binary,编码方式
with open('kobe.jpg','wb') as f:
    if response2.status_code==200:
        f.write(img_data)

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