Python第二天

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)
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,752评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,100评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,244评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,099评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,210评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,307评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,346评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,133评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,546评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,849评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,019评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,702评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,331评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,030评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,260评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,871评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,898评论 2 351

推荐阅读更多精彩内容

  • 1. elif语句 代码实例 2.Python中的循环 先介绍for循环 格式 for 临时变量 in 可迭代对象...
    土拨鼠的简书日记阅读 165评论 0 0
  • elif switch python中的循环 先介绍for循环 格式: for 临时变量 in 可迭代对象: 循...
    苍鹰_4084阅读 464评论 0 0
  • Python中的循环 for循环 格式: for 临时变量 in 可迭代对象:循环体举例代码块 问题: 其中X是什...
    小吴同学叫乌托阅读 336评论 0 0
  • 1.elif判断 代码示例 结果 2.Python中的for循环 格式: for临时变量 in 可迭代对象:循环体...
    lishuyu阅读 233评论 0 0
  • Python用处: 运维,测试 Python全栈(前端、后端) Java+Python 人工智能 爬虫工程师 数据...
    矗鑫宛馨阅读 358评论 0 0