我目前正在用python语言构建一个可以打开文本文档(.txt)的项目。但是我遇到了一个问题。我尝试使用以下代码打开文档:
f = open("music_data.txt","r")
print(f)
但它不起作用。它只是说:
<_io.TextIOWrapper name='music_data.txt' mode='r' encoding='cp1252'>
这似乎是打印包含文档的变量的标准方法,但随后它给出了一条错误消息:
Traceback (most recent call last):
File "\\bcs\StudentRedir2010$\StudentFiles\MyName\MyDocuments\Computing\Programming\Python\Music Program\program.py", line 45, in <module>
mode()
File "\\bcs\StudentRedir2010$\StudentFiles\MyName\MyDocuments\Computing\Programming\Python\Music Program\program.py", line 43, in mode
mode()
TypeError: 'str' object is not callable
我不知道这是为什么。