不能创建字典的是( )。
A: a=dict(XH=9001,XM="ZSan")
B: a=dict([("XH",9001),("XM","ZSan")])
C: a={XH:9001,XM:"ZSan"}
D: a={}.fromkeys(["XH","XM"],0)
A: a=dict(XH=9001,XM="ZSan")
B: a=dict([("XH",9001),("XM","ZSan")])
C: a={XH:9001,XM:"ZSan"}
D: a={}.fromkeys(["XH","XM"],0)
举一反三
- 以下能正确定义数据类型StuInfo的代码是( )。 A: Type StuInfo Xm As String*8 Xh As IntegerEnd Type StuInfo B: Type StuInfo Xm As String*8 Xh As IntegerType End C: Type StuInfo Xm As String*8 Xh As IntegerEnd Type D: Type StuInfo Xm String*8 Xh As IntegerEnd StuInfo
- 智慧职教: xs表(xh,xm,xb) kc表(kch,kcm,kkxq) xscj表(id,xh,kch,kccj)查询数据库课程的成绩
- 查询家庭地址不是“河南省郑州市”的所有行,并显示xh,xm和jtdz列
- 已知一学生表XS(XH,XM,XB,NL,CJ,RQ)其中:XH—学号,XM—姓名,XB—性别,NL—年龄,CJ—成绩,RQ—日期,向该表中添加一个姓名为“王小明”的记录,则SQL语句应为______ A: INSERT INTO XS(XM) VALUES("王小明") B: INSERT INTO XS VALUES("王小明") C: INSERT INTO XM VALUE S("王小明") D: 无法使用SQL语句完成该功能
- 设有学生关系:S(XH,XM,XB,NL,DP)。在这个关系中,XH表示学号,XM表示姓名,XB表示性别,NL表示年龄,DP表示系部。查询学生姓名和所在系的投影操作的关系运算式是________________