第13904题
找出与给定Python读取并处理CSV文件功能相同的选项
with open('动物.csv','r') as f:
    h=f.read().strip().split(',')
print(h)
A
f=open('动物.csv','r')
h=f.read().split(',').strip()
f.close()
print(h)
B
f=open('动物.csv','r')
h=f.read().strip().split(',')
f.close()
print(h)
C
f=open('动物.csv','r')
h=f.read().strip().split(',')
print(f)
D
f=open('动物.csv','r')
h=f.read().split(',').strip()
f.close()
print(f)