content.txt中原来的内容为字符串“yesterday”,则下方代码段运行后,content.txt中的内容为( )。
f = open('content.txt','w') for i in 'today': f.write(i) f.close()
yesterdaytoday
today
y