python

python命令行交互如何进行文件操作

小樊
82
2024-12-11 11:35:19
栏目: 编程语言

在Python命令行交互中,你可以使用内置的open()函数进行文件操作。以下是一些常见的文件操作示例:

  1. 打开一个文件并读取内容:
# 使用read()方法读取文件内容
with open('file.txt', 'r') as file:
    content = file.read()
    print(content)
  1. 打开一个文件并写入内容:
# 使用write()方法写入文件内容
with open('file.txt', 'w') as file:
    file.write('Hello, World!')
  1. 追加内容到文件:
# 使用append()方法追加内容到文件
with open('file.txt', 'a') as file:
    file.write('\nThis is a new line.')
  1. 检查文件是否存在:
import os

if os.path.exists('file.txt'):
    print("File exists.")
else:
    print("File does not exist.")
  1. 删除文件:
import os

if os.path.exists('file.txt'):
    os.remove('file.txt')
    print("File deleted.")
else:
    print("File does not exist.")

在Python命令行交互中,你可以直接输入上述代码片段并执行它们。请注意,使用with语句可以确保文件在使用后正确关闭,即使在发生异常时也是如此。

0
看了该问题的人还看了