单项选择题
有img0、img1、img2、img3四张图合成一张图img,现要img3呈现在img的左下角方位,下列可以实现的是()
A.matplotlib.pyplot.subplot(222);matplotlib.pyplot.imshow(img3);matplotlib.pyplot.title(‘img’)
B.matplotlib.pyplot.subplot(223);matplotlib.pyplot.imshow(img3);matplotlib.pyplot.title(‘img3’)
C.matplotlib.pyplot.subplot(222);matplotlib.pyplot.imshow(img3);matplotlib.pyplot.title(‘img3’)
D.matplotlib.pyplot.subplot(224);matplotlib.pyplot.imshow(img3);matplotlib.pyplot.title(‘img’)
点击查看答案&解析
相关考题
-
单项选择题
文件的名字可以清晰的反映出它的作用,有时候这个文件的信息或者功能出现了改动,就对其进行重命名操作,那么下面在os模块中可以重命名文件或目录的方法为()。
A.os.rename()
B.os.move()
C.os.mkdir()
D.os.getcwd() -
单项选择题
使用requests库请求返回”https://www.python.org”这个网页的信息,下列正确的是()
A.requests.get(‘https://www.python.org’)
B.requests.delete(‘https://www.python.org’)
C.requests.post(‘https://www.python.org’)
D.requests.options(‘https://www.python.org’) -
单项选择题
urllib的某个用来模拟发送请求,用于访问URL所指向的网页内容,下列属于的是()
A.request
B.error
C.parse
D.robotparser
