通过list的下标访问list的值
>>> A = [1,2,3]
>>> A[0]
#output: 1
通过list的值访问该值在list中的下标
>>> A = [1,2,3]
>>> A.index(1)
# output: 0
>>> A = [1,2,3]
>>> A[0]
#output: 1
>>> A = [1,2,3]
>>> A.index(1)
# output: 0
本文标题:List由值访问下标
本文链接:https://www.haomeiwen.com/subject/oqwufftx.html
网友评论