下列程序将建立一个CSV格式文件,划线处正确的代码选项应该为?( )
a = ['老虎', '狗', '大象', '牛'] f = open('动物.CSV', _______) f.write(','.join(a) + '\n') f.close()
'W'
'R'
'w'
'r'