在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
语句可以确保文件在使用后正确关闭,即使在发生异常时也是如此。