Hi I'm trying to input a string and then have the string split into individual words. The unique words that are in the string and that are also in the dictionary keys of "contents" retrieve the corresponding values from the dictionary "files".
How do I split the input string to check individual words against the dictionary "concept" keys and if possible return the words in the string, not the dictionary keys?
I tried to split the string into a list and then pass the list values directly into the dictionary but I got lost real quick (those are the variables commented out at the top. Any help is appreciated. Thank you
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")