文件“score2.csv”中存放了3位同学的成绩数据,内容如图所示,小李编写了如下程序:
csv_file = open("score2.csv","r")
flines = csv_file.readlines()
csv_file.close()
执行程序后,flines的结果是?( )
中国电子学会
青少年软件编程(Python)等级考试试卷(六级)202309卷文件“score2.csv”中存放了3位同学的成绩数据,内容如图所示,小李编写了如下程序:
csv_file = open("score2.csv","r")
flines = csv_file.readlines()
csv_file.close()
执行程序后,flines的结果是?( )
['202008480,18', '202008319,19', '2202008333,20']
['202008480,18\n', '202008319,19\n', '2202008333,20\n']
['准考证号,成绩', '202008480,18', '202008319,19', '2202008333,20']
['准考证号,成绩\n', '202008480,18\n', '202008319,19\n', '2202008333,20\n']
下列代码的执行结果是?( )
import numpy as np
a = np.arange(9, dtype = np.float_).reshape(3,3)
b = np.array([100,10,10])
print (np.divide(a,b))
[[0. 0.1 0.2 ]
[0.03 0.4 0.5 ]
[0.06 0.7 0.8 ]]
[[0. 0.01 0.2 ]
[0.3 0.04 0.5 ]
[0.6 0.07 0.8 ]]
[[0. 0.1 0.02 ]
[0.3 0.4 0.05 ]
[0.6 0.7 0.08 ]]
[[0. 0.01 0.2 ]
[0.03 0.04 0.5 ]
[0.06 0.07 0.8 ]]
有Python程序段如下,下列选项错误的是?( )
class Car():
def __init__(self,name,color):
self.name=name
self.color=color
def run(self):
print(self.color +self.name+"is running")