PYthon数学建模 例题2.3

L = ['abc', 12, 3.45, 'Python', 2.789]
print(L) #输出完整列表
print(L[0]) #输出列表的第一个元素
L[0]= 'a' #修改列表的第一个元素
L[1:3] = ['b', 'Hello'] #修改列表的第二、三元素
print(L)
L[2:4] = [] #删除列表的第三、四元素
print(L)

结果:
D:\py\python.exe "D:\新建文件夹\python编译器\python 代码\ Python数学建模\liti\例题2.3.py"
['abc', 12, 3.45, 'Python', 2.789]
abc
['a', 'b', 'Hello', 'Python', 2.789]
['a', 'b', 2.789]

进程已结束,退出代码为 0

2023310143026

posted on 2024-09-03 17:13  三元最爱  阅读(8)  评论(0编辑  收藏  举报