在使用Python操作⽂件时,哪个选项可以打开⽂件“codemao.txt”并写⼊内容( )?
f = open('codemao.txt', 'r')
f = open('codemao.txt', 'w')
f = open('codemao.txt', 'rb')
f.close()