标签: python list
例如,假设我有一个列表 示例= [A,B,C,d]
如何返回头寸的价值?所以对于A,我希望返回值为0. B为1,C为2,D为3。
答案 0 :(得分:1)
您正在寻找列表对象的.index()
['a', 'b', 'c', 'd'].index('c') # 2