file = open(file_variable)
n = 0
line = file.readline()
while line != "":
for ch in line:
if ch in '.?!':
n += 1
file.readline()
return n
file_variable.close()
當我在主程序中嘗試打印n時,它不返回任何內容。有人能給我建議我做錯了什麼。我如何閱讀txt文件的工作原理有點糊塗..計算句子的函數
主程序
from functions import sentence_count
file_variable = 'pelee.txt'
n = sentence_count(file_variable)
print(n)
你從不打印'n'。 – Alexander
我試圖在主要功能中打印n –
向我們展示您的完整代碼。 – Alexander