在 Python 中,您可以使用 os 模块轻松确定文本文件是否为空。该模块提供了与操作系统交互的各种工具。
要检查文件是否为空,可以使用以下步骤:
下面是演示这一点的示例代码片段:
<code class="python">import os # Example file path file_path = "file.txt" # Check if the file is empty if os.stat(file_path).st_size == 0: print("The file is empty.") else: print("The file is not empty.")</code>
此代码导入 os 模块,检索文件的大小,并将其与 0 进行比较。如果文件为空,则打印“The file isempty”;否则,它会打印“文件不为空。”
以上是在Python中如何确定文本文件是否为空?的详细内容。更多信息请关注PHP中文网其他相关文章!