8.与下列程序实现的功能一样的是?( )tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
with open('动物.csv','r') as f:tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
h=f.read().strip().split(',')tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
print(h)tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
A.f=open('动物.csv','r')tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
h=f.read().split(',').strip()tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
f.close()tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
print(h)tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
B.f=open('动物.csv','r')tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
h=f.read().strip().split(',')tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
f.close()tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
print(h)tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
C.f=open('动物.csv','r')tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
h=f.read().strip().split(',')tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
print(f)tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
D.f=open('动物.csv','r')tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
h=f.read().split(',').strip()tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
f.close()tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
print(f)tM7100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库