A、{x=1,y={y1=10,y2=3}}
B、{x=1,y={y1=2,y2=3}}
C、{'x':1,'y':{'y1':10,'y2':3}}
D、{'x':1,'y':{'y1':2,'y2':3}}
第1题:
已知“a=dict(x=1,y=2)”且“b=a”,则执行“a['y']=10”后,则print(b)的输出结果为()。
A.{x=1,y=10}
B.{x=1,y=2}
C.{'x':1,'y':10}
D.{'x':1,'y':2}
第2题:
2、双纵坐标的绘图命令为
A.plotyy(x1,y1,x2,y2)
B.ploty(x1,y1,x2,y2)
C.plot(x1,y1,x2,y2)
D.plotyy(x1,y1;x2,y2)
第3题:
以下程序执行的结果是() A=[3,4;5,2]; [x1,y1]=max(A) [x2,y2]=max(A,[],2)
A.x1 = y1= 5 4 2 1 x2= y2= 4 2 5 1
B.x1 = y1= 4 5 2 1 x2= y2= 5 2 4 1
C.x1 = y1= 5 4 1 2 x2= y2= 4 2 5 1
D.x1 = y1= 5 4 2 1 x2= y2= 5 1 4 2
第4题:
双纵坐标的绘图命令为
A.plotyy(x1,y1,x2,y2)
B.ploty(x1,y1,x2,y2)
C.plot(x1,y1,x2,y2)
D.plotyy(x1,y1;x2,y2)
第5题:
已知“a=dict(x=1,y=2)”且“b=a.copy()”,则执行“a['y']=10”后,则print(b)的输出结果为()。
A.{x=1,y=10}
B.{x=1,y=2}
C.{'x':1,'y':10}
D.{'x':1,'y':2}