在Python命令行交互中,你可以使用内置的open()
函数进行文件操作。以下是一些常见的文件操作示例:
- 打开一个文件并读取内容:
# 使用read()方法读取文件内容 with open('file.txt', 'r') as file: content = file.read() print(content)
- 打开一个文件并写入内容:
# 使用write()方法写入文件内容 with open('file.txt', 'w') as file: file.write('Hello, World!')
- 追加内容到文件:
# 使用append()方法追加内容到文件 with open('file.txt', 'a') as file: file.write('\nThis is a new line.')
- 检查文件是否存在:
import os if os.path.exists('file.txt'): print("File exists.") else: print("File does not exist.")
- 删除文件:
import os if os.path.exists('file.txt'): os.remove('file.txt') print("File deleted.") else: print("File does not exist.")
在Python命令行交互中,你可以直接输入上述代码片段并执行它们。请注意,使用with
语句可以确保文件在使用后正确关闭,即使在发生异常时也是如此。