Python 入门学习第三课

python 复制代码
# 遍历列表
# 通常使用for循环 格式 for 自己定义的名字:列表:
# 冒号不要忘记了 在这之后 需要缩进 如果不缩进 将进行一次
message = ['zahngsan','lisi','wangwu']
for wq in message:
    print(wq)
# 练习题
message = ['xiande','tiande','choude']
for wq in message:
    print(wq)
for wq in message:
    print(f" I like {wq} pizza")
print("I like relly pizza")
animals = ['pig','cat','dog']
for an in animals:
    print(an)
for an in animals:
    print(f"A {an} would make a great pet")
print(" Any of these animals would make a great pet!")
# 创建数值列表
# list(range())
# range(1,6) --->> 1 2 3 4 5 其实没有六 差一原则
# range(6) ------------>> 0 1 2 3 4 5
# 还能根据步长设置数值列表 range(1,10,2) --->>>3 5 7 9
# python中 乘方就是平方定义为**
# 同时可以对列表就行最大值,最小值,求和等快捷运算
wq = list(range(2,6))# range 左边为起始处数值 右边为小于的 [2,6)
print(wq)
now = []
for ss in range(1,9):
    now.append(ss ** 2)
print(now)
print(max(now))
print(min(now))
print(sum(now))
# 比较重要的一点 列表推导式 我感觉不好用
now = [value ** 2 for value in range(1,6)]# 有意思的是 for中没有冒号
print(now)
# 练习题
now = list(range(1,20,2))
for wq in now:
    print(wq)
now = list(range(3,31,3))
for wq in now:
    print(wq)
now = []
for wq in range(1,11):
    now.append(wq ** 3)
print(now)
now = [wq ** 3 for wq in range(1,11)]
print(now)
# 切片
now = ['pet','pig','uyy','trrt','yyt','tyfgfd']
print(now)
print(now[1:3])
# 复制列表
yesterday = now[:]
print(yesterday)
# 一种有趣的表达方式 以下的方法 都同时指向了同一个列表
future = now
print(future)
future.append('nihao')
print(future)
print(now)
now.append('gg')
print(future)
print(now)
print(now[-3:])
# 元组
# Python将值不变的称为元组 类似于线性代数的矩阵
# 不能直接修改元组的值 可以通过重新赋值元组的值来进行改变
now = (1,2,3,4)
print(now[0])
for wq in now:
    print(wq)
# 设置代码格式 不用学习 逆水行舟 你我皆是陌生人
相关推荐
这个男人是小帅14 分钟前
【GAT】 代码详解 (1) 运行方法【pytorch】可运行版本
人工智能·pytorch·python·深度学习·分类
Qter_Sean16 分钟前
自己动手写Qt Creator插件
开发语言·qt
xiaoyaolangwj17 分钟前
高翔【自动驾驶与机器人中的SLAM技术】学习笔记(十三)图优化SLAM的本质
学习·机器人·自动驾驶
何曾参静谧20 分钟前
「QT」文件类 之 QIODevice 输入输出设备类
开发语言·qt
静止了所有花开1 小时前
SpringMVC学习笔记(二)
笔记·学习
爱吃生蚝的于勒1 小时前
C语言内存函数
c语言·开发语言·数据结构·c++·学习·算法
L_cl3 小时前
Python学习从0到1 day26 第三阶段 Spark ④ 数据输出
学习
小白学大数据3 小时前
Python爬虫开发中的分析与方案制定
开发语言·c++·爬虫·python
Mephisto.java4 小时前
【大数据学习 | HBASE】hbase的读数据流程与hbase读取数据
大数据·学习·hbase
冰芒猓4 小时前
SpringMVC数据校验、数据格式化处理、国际化设置
开发语言·maven