python数组数据的修改

作者: python 发布时间: 2022-10-16 浏览: 454 次 编辑

python数组数据的修改

name = ["A","B","C"]
name[1]="D"   #指定数据下表修改
print(name)