Baca dikt dari teks
file = open("dictionary_string.txt", "r")
contents = file.read()
dictionary = ast.literal_eval(contents)
file.close()
Real Raccoon
file = open("dictionary_string.txt", "r")
contents = file.read()
dictionary = ast.literal_eval(contents)
file.close()