填空题表达式dict(zip([1,2],[3,4]))的值为()。
填空题
表达式dict(zip([1,2],[3,4]))的值为()。
参考解析
解析:
暂无解析
相关考题:
已知vec=[[1,2],[3,4]],则表达式[[row[i]forrowinvec]foriinrange(len(vec[0]))]的值为_________________________。
有下列程序段: struct st {intx;int*y;}*pt; int a[]={1,2},b[]={3,4}; struct st c[2]={10,a,20,b}; pt=c; 下列选项中表达式的值为11的是( )。A.*pt->yB.pt->xC.++pt->xD.(pt++)->x
设有以下C语言说明语句。 struct { int x,y;} s[2]={{1,2),{3,4}),*p=s,*q=s; 则表达式++p->x和表达式(++q)->x的值分别为(34)。A.1、1B.1、3C.2、3D.3、3
单选题dict(zip((1,2),(3,4)))的返回值是()。A字符串B元组C列表D字典