python更新、修改列表(数组)的方法

2022-03-11 00:00:00 修改 更新 数组

python更新列表(数组),本范例演示了python中如果修改列表里的数据已经向列表增加数据

"""
作者:皮蛋编程(https://www.pidancode.com)
创建日期:2022/3/20
功能描述:python更新列表(数组)
"""
aList = [123, 'pidancode.com', 4.56, ['inner', 'list'], (7-9j)]
print(aList[2])
aList[2] = 'float replacer'
print(aList)
aList.append("hi, i'm new here")
print(aList)

输出结果:
4.56
[123, 'pidancode.com', 'float replacer', ['inner', 'list'], (7-9j)]
[123, 'pidancode.com', 'float replacer', ['inner', 'list'], (7-9j), "hi, i'm new here"]

以上代码在python3.9环境下测试通过

相关文章