在 Python 中读取并输出文件内容:1. 使用 open() 函数打开文件;2. 使用 read() 方法读取文件内容;3. 使用 print() 函数输出文件内容;4. 使用 with 语句自动关闭文件。
Python 读取文件并输出
如何读取文件并输出?
在 Python 中,你可以使用 open()
函数打开一个文件,然后使用 read()
方法读取文件内容。
详细步骤:
打开文件:
<code class="python">file = open("my_file.txt", "r")</code>
其中:
"my_file.txt"
是要打开的文件路径。"r"
表示以只读模式打开文件。读取文件内容:
<code class="python">file_content = file.read()</code>
此行代码将整个文件内容读入 file_content
变量中。
输出文件内容:
<code class="python">print(file_content)</code>
此行代码将在控制台中打印文件内容。
关闭文件:
<code class="python">file.close()</code>
读完文件后,请务必关闭文件以释放资源。
完整示例:
<code class="python">with open("my_file.txt", "r") as file: file_content = file.read() print(file_content)</code>
使用 with
语句可以自动在块末尾关闭文件,从而简化代码。
以上是python怎么读取文件并输出的详细内容。更多信息请关注PHP中文网其他相关文章!