(如图)name.csv文件内容如下,下面程序输出的结果是 'Alice', 'Ida', 'Sam', 'Otis', 'Gina' 。( )
with open('name.csv','r') as f: n=f.read().strip().split(',') print(n)