Python从多个列表中返回索引

时间:2016-03-08 21:01:32

标签: python list indexing

尝试在字母列表(字母表)中查找用户输入的索引值。 Essientially返回给定列表中的索引列表。

alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
words = input("Type something: ").upper()
print (list(words))
print (list(alphabet))
#Substring not found, 
print (alpha.index(words))

1 个答案:

答案 0 :(得分:0)

result中返回索引为words的{​​{1}}列表:

alphabet

但是如果你想要真正的字母索引,可以在所有列表元素中加1。