尝试在字母列表(字母表)中查找用户输入的索引值。 Essientially返回给定列表中的索引列表。
alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
words = input("Type something: ").upper()
print (list(words))
print (list(alphabet))
#Substring not found,
print (alpha.index(words))
答案 0 :(得分:0)
在result
中返回索引为words
的{{1}}列表:
alphabet
但是如果你想要真正的字母索引,可以在所有列表元素中加1。