单项选择题
A.img.itemsize属性返回img中每个元素大小B.img.dtype属性返回img中元素类型C.img.data属性返回img的数据D.img.flat属性返回img的维度
下列选项中()可以使用matplotlib绘制线性线段图。A.matplotlib.pyplot.figure...
单项选择题下列选项中()可以使用matplotlib绘制线性线段图。
A.matplotlib.pyplot.figure(numpy.arange(7))B.matplotlib.pyplot.plot(numpy.arange(7))C.matplotlib.pyplot.figure(numpy.arange(8))D.matplotlib.pyplot.plot(numpy.arange(8))
下列python库或模块中,主要用于解析JSON文档的是()A.BeautifulSoupB.HTMLC.XM...
单项选择题下列python库或模块中,主要用于解析JSON文档的是()
A.BeautifulSoupB.HTMLC.XMLD.json
使用python打开my.txt文件的代码如下:File=open(“my.txt”,”a”)假如在“my.t...
使用python打开my.txt文件的代码如下:File=open(“my.txt”,”a”)假如在“my.txt”中写入”abcd”,下列操作不正确的是()
A.file.write(“abcd”)B.file.write(list(“abcd”))C.file.writelines(“abcd”)D.file.writelines(list(“abcd”))