f = open(r'C:\Users\Owner\Downloads\a.txt')
line = f.readlines()
print(line)
f.close
上記コマンドを実行すると下記のようなエラーが表示され、テキストの中身が表示されません。
File "C:\Users\Owner\Downloads\txt.py", line 3, in <module>
print(line)
TypeError: '_io.TextIOWrapper' object is not callable
実行ファイルと、テキストは同じディレクトリに配置しております。
どなたか解決方法をご存知でしたら教えていただきたいです。