我使用Pyinstaller捆绑了一个Python应用程序。但是,运行代码时出现“找不到文件”错误。该代码打开一个TXT文件并读取它。我应该将TXT文件放在哪里才能使捆绑的应用正常工作?这是我的代码:
def count_allwords(text):
count = 0
with open(text) as f:
for line in f:
words = line.split()
count = count + len(words)
print('\nThere are '+ str(count) + " words in " + '"' + text + '"!\n\n')
print('Original Text:')
print_all_words(text)