Python学习25天

# 切片语法:序列[起始索引:结束索引:步长],起始不写默认为0,结束不写默认取到结尾,步长不写默认为1(步长为-反向截取,最后一位起始序列为-1),左闭右开,切片后原序列不变

str = "lx,hahaha,呵呵"

str_slice1 = str[0:3:1]

print(f"str:{str}\nstr_slice1:{str_slice1}") # lx,

str_slice2 = str[-1:-4:-1] # 呵呵,

print(f"str_slice2:{str_slice2}")

复制代码
list_num=[110,119,120,100,200,300]
# 取出前三个数字
list_num1=list_num[0:3:1]
print(f"list_num1: {list_num1}")

#取出后三个数字,保持顺序不变
# 取出后三个数字
list_num2=list_num[-1:-4:-1]
#反转数据
list_num2.reverse()
print(f"list_num2: {list_num2}")
相关推荐
ZXF_H几秒前
pip安装github上的开源软件包
git·python·github·pip
没事别学JAVA2 分钟前
使用Python编写Windows系统服务管理脚本,主要用于管理mysql、postgresql等服务
windows·python
yivifu1 小时前
用python将一个扫描pdf文件改成二值图片组成的pdf文件
python·pdf·numpy·pillow·pymupdf
一尘之中1 小时前
使用 PyTorch TunableOp 加速 ROCm 上的模型
人工智能·pytorch·学习
honey ball1 小时前
LLC与反激电路设计【学习笔记】
单片机·嵌入式硬件·学习
Eric.Lee20212 小时前
数据集-目标检测系列- 装甲车 检测数据集 armored_vehicles >> DataBall
python·算法·yolo·目标检测·装甲车检测
Eric.Lee20212 小时前
数据集-目标检测系列- 牵牛花 检测数据集 morning_glory >> DataBall
人工智能·python·yolo·目标检测·计算机视觉·牵牛花检测
羚羊角uou3 小时前
【C++】list模拟实现(详解)
开发语言·c++
Peter_chq3 小时前
【计算机网络】多路转接之select
linux·c语言·开发语言·网络·c++·后端·select
tianyunlinger4 小时前
rope编码代码分享
pytorch·python·深度学习