mirror of
https://github.com/freeedcom/ai-codereviewer.git
synced 2025-02-21 16:50:27 +00:00
9 lines
256 B
Python
9 lines
256 B
Python
# 讀取文件
|
|
with open('input.txt', 'r') as file:
|
|
content = file.read()
|
|
print("文件內容:", content)
|
|
|
|
# 寫入文件
|
|
with open('output.txt', 'w') asd file:
|
|
file.write("這是寫入的新內容。")
|
|
print("內容已寫入output.txt")
|