• 2022-06-08 问题

    字典类型主要是根据键来提取对应的值,通过赋值操作可以实现字典元素的增添和修改,若对字典10、Dict={2:’two’,3:’three’,1:’one’}进行操作Dict[1]=’One’,此时字典Dict将会变为()(注意,下面选项不考虑顺序性)。 A: {2:’two’,3:’one’,1:’one’} B: {2:’two’,3:’three’,1:’One’} C: {2:’two’,3:’three’,1:’one’,1:’One’} D: {2:’One’,3:’three’,1:’one’}

    字典类型主要是根据键来提取对应的值,通过赋值操作可以实现字典元素的增添和修改,若对字典10、Dict={2:’two’,3:’three’,1:’one’}进行操作Dict[1]=’One’,此时字典Dict将会变为()(注意,下面选项不考虑顺序性)。 A: {2:’two’,3:’one’,1:’one’} B: {2:’two’,3:’three’,1:’One’} C: {2:’two’,3:’three’,1:’one’,1:’One’} D: {2:’One’,3:’three’,1:’one’}

  • 2022-05-31 问题

    下列选项中,不能创建字典对象的语句是( )。 A: {'one':1, 'two':2, 'three':3} B: dict('one':1, 'two':2, 'three':3) C: {one=1, two=2, three=3} D: dict(one=1, two=2, three=3)

    下列选项中,不能创建字典对象的语句是( )。 A: {'one':1, 'two':2, 'three':3} B: dict('one':1, 'two':2, 'three':3) C: {one=1, two=2, three=3} D: dict(one=1, two=2, three=3)

  • 2022-06-15 问题

    在Python中执行下列语句后,输出结果是()。[br][/br]a=1 b=2*a//4 a="one" print(a,b) A: one 0 B: 1 0 C: one 0.5 D: 1 0.5

    在Python中执行下列语句后,输出结果是()。[br][/br]a=1 b=2*a//4 a="one" print(a,b) A: one 0 B: 1 0 C: one 0.5 D: 1 0.5

  • 2022-05-27 问题

    int i=1; switch (i) { case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two"); default: System.out.println("default"); } A: one B: one, default C: one, two, default D: default

    int i=1; switch (i) { case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two"); default: System.out.println("default"); } A: one B: one, default C: one, two, default D: default

  • 2022-05-31 问题

    ‍下列选项中,不能创建字典对象的语句是( )。‍ A: {'one':1, 'two':2, 'three':3} B: dict('one':1, 'two':2, 'three':3) C: dict([('one',1), ('two',2), ('three',3)]) D: dict(zip(['one','two','three'], [1,2,3]))

    ‍下列选项中,不能创建字典对象的语句是( )。‍ A: {'one':1, 'two':2, 'three':3} B: dict('one':1, 'two':2, 'three':3) C: dict([('one',1), ('two',2), ('three',3)]) D: dict(zip(['one','two','three'], [1,2,3]))

  • 2022-05-27 问题

    运行以下代码,得到什么打印结果?int i = 1;switch (i) { default: System.out.println("default"); case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two");} A: default one B: one C: one two D: one default

    运行以下代码,得到什么打印结果?int i = 1;switch (i) { default: System.out.println("default"); case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two");} A: default one B: one C: one two D: one default

  • 2022-06-05 问题

    请选出分数1/2的正确读法 A: one two B: one twoth C: one second D: a half

    请选出分数1/2的正确读法 A: one two B: one twoth C: one second D: a half

  • 2022-05-27 问题

    试图编译运行下面的代码会输出什么样的结果int i=1;switch (i){case 0:System.out.println("zero");break;case 1:System.out.println("one");case 2:System.out.println("two");default:System.out.println("default");} A: one B: one, default C: one, two, default D: default

    试图编译运行下面的代码会输出什么样的结果int i=1;switch (i){case 0:System.out.println("zero");break;case 1:System.out.println("one");case 2:System.out.println("two");default:System.out.println("default");} A: one B: one, default C: one, two, default D: default

  • 2021-04-14 问题

    One of the differences between Pit No. 2 and Pit No. 1 is that _________.

    One of the differences between Pit No. 2 and Pit No. 1 is that _________.

  • 2022-10-26 问题

    以下对枚举类型名的定义中正确的是()。 A: enuma={one,two,three}; B: enuma{one=9,two=-1,three}; C: enuma={"one","two","three"}; D: enuma{"one","two","three"};

    以下对枚举类型名的定义中正确的是()。 A: enuma={one,two,three}; B: enuma{one=9,two=-1,three}; C: enuma={"one","two","three"}; D: enuma{"one","two","three"};

  • 1 2 3 4 5 6 7 8 9 10