假设city.csv 文件内容如下:
巴哈马,巴林,孟加拉国,巴巴多斯
白俄罗斯,比利时,伯利兹
以下代码的输出结果是_________。
f=open("city.csv","r")
ls=f.read().split(",")
f.close()
print(ls)
巴哈马,巴林,孟加拉国,巴巴多斯
白俄罗斯,比利时,伯利兹
以下代码的输出结果是_________。
f=open("city.csv","r")
ls=f.read().split(",")
f.close()
print(ls)
举一反三
- 文件test.txt的内容是一段文本:hello,与以下代码在同一目录下,程序运行的输出结果是( )。f = open('test.txt')print(f.read(2))f.close( )
- 一个文本文件test.txt的一行存储5个整数如下:1 3 56 67 34数之间用空格隔开,要读出这些整数的函数正确的是: A: def read(): f=open("test.txt","rt") while True: s=f.read() if s!="": print(s) else: break f.close() B: def read(): f=open("test.txt","rt") while True: s=f.readline() if s!="": print(s) else: break f.close() C: def read(): f=open("test.txt","rt") st=f.readlines() for s in st: print(s) f.close() D: def read(): f=open("test.txt","rt") s=f.readline() st=s.splist(" ") for s in st: print(s) f.close()
- 下列程序的输出结果是( )。 import os f = open(r'D:\test.txt','w+') f.write('Python') f.seek(0) m = f.read(3) print(m) f.close() A: Pyt B: Python C: yth D: Py
- 下列程序的输出结果是()。f=open('out.txt','w+')f.write('Python') f.seek(0)c=f.read(2) print() f.close() A: Pyth B: Python C: Py D: th
- 下列程序的输出结果是()。f=open("w.txt","w+")f.write("LuxetVeritas")f.seek(7)s=f.read(3)f.close()print(s) A: tas B: Lux C: eri D: Ver