with open("readme.txt","r") as f:
r=f.read()
with open("writeme.txt", ① ) as p:
p.write(r)
以上程序实现将 readme 文件内容追加写入 writeme 文件中, ① 处的模式为? ( )
w"
"t"
"r"
"a"