python列表list访问元素
提问人:杨紫红发布时间:2020-11-26
访问元素
x = a[1] # Get 2nd element (0 is first)
a[1] = 5
z = d[1][0][2] # Nested lists
继续查找其他问题的答案?
相关视频回答
回复(0)
访问元素
x = a[1] # Get 2nd element (0 is first)
a[1] = 5
z = d[1][0][2] # Nested lists
点击加载更多评论>>