与下列Python程序实现的功能一样的是?( )
with open('动物.csv','r') as f: h=f.read().strip().split(',') print(h)
f=open('动物.csv','r') h=f.read().split(',').strip() f.close() print(h)
f=open('动物.csv','r') h=f.read().strip().split(',') f.close() print(h)
f=open('动物.csv','r') h=f.read().strip().split(',') print(f)
f=open('动物.csv','r') h=f.read().split(',').strip() f.close() print(f)