执行以下语句后,文件txt的内容是?()
fo = open("txt",'w') x= ["大学","道德经","易经"] fo.write(' '.join(x)) fo.close()
大学道德经易经
大学 道德经 易经
'大学,'道德经','易经'
'大学'
' '
'道德经'
'易经'