【发布时间】:2018-12-06 01:23:25
【问题描述】:
您好,我正在尝试输入一个字符串,然后将该字符串拆分为单个单词。字符串中的唯一词以及“内容”的字典键中的唯一词从字典“文件”中检索相应的值。
如何拆分输入字符串以根据字典“概念”键检查单个单词,并在可能的情况下返回字符串中的单词,而不是字典键?
我尝试将字符串拆分为一个列表,然后将列表值直接传递到字典中,但我很快就迷路了(那些是在顶部注释掉的变量。感谢您的帮助。谢谢
def concept(word):
# convert var(word) to list
#my_string_list=[str(i) for i in word]
# join list(my_string_list) back to string
#mystring = ''.join(my_string_list)
# use this to list python files
files = {1:"file0001.txt",
2:"file0002.txt",
3:"file0003.txt",
4:"file0004.txt",
5:"file0005.txt",
6:"file0006.txt",
7:"file0007.txt",
8:"file0008.txt",
9:"file0009.txt"}
# change keys to searchable simple keyword phrases.
concepts = {'GAMES':[1,2,4,3,3],
'BLACKJACK':[5,3,5,3,5],
'MACHINE':[4,9,9,9,4],
'DATABASE':[5,3,3,3,5],
'LEARNING':[4,9,4,9,4]}
# convert to uppercase, search var(mystring) in dict 'concepts', if not found return not found"
if word.upper() not in concepts:
print("{}: Not Found in Database" .format(word)) not in concepts
return
# for matching keys in dict 'concept' list values in dict 'files'
for pattern in concepts[word.upper()]:
print(files[pattern])
# return input box at end of query
while True:
concept(input("Enter Concept Idea: "))
print("\n")
【问题讨论】:
-
您好,欢迎来到 SO。你这样做怎么样,对于 dictionary.keys() 中的 word.upper(): print('matched!!')
标签: python python-3.x dictionary