-->
当前位置:首页 > 题库

题库 第6378页

  • 最新
  • 浏览
  • 评论

单选题:Python集合中的元素不可以是()。

Luz5年前 (2021-05-10)1729
Python集合中的元素不可以是()。答案:D…

单选题:已知a=[4, 7, 3, 2, 6],则执行如下选项后,x的值是[2, 3, 4, 6, 7]的是()。

Luz5年前 (2021-05-10)1635
已知a=[4, 7, 3, 2, 6],则执行如下选项后,x的值是[2, 3, 4, 6, 7]的是()。答案:B…

单选题:已知a=[1,2,3,4,5],以下选项中,不能删除列表a的最后一个元素5的是()。

Luz5年前 (2021-05-10)3611
已知a=[1,2,3,4,5],以下选项中,不能删除列表a的最后一个元素5的是()。答案:C…

单选题:已知x是一个列表,则以下选项中,不能访问列表最后一个元素的是()。

Luz5年前 (2021-05-10)3743
已知x是一个列表,则以下选项中,不能访问列表最后一个元素的是()。答案:D…

单选题:已知x=[1, 2, 3],y=[4, 5],则x.extend(y)后,x的值是()。

Luz5年前 (2021-05-10)4191
已知x=[1, 2, 3],y=[4, 5],则x.extend(y)后,x的值是()。答案:A…

单选题:声明常量时需要使用的关键字是

Luz5年前 (2021-05-10)1859
声明常量时需要使用的关键字是答案:C…

单选题:We can tell that there must be a lot of redundant calculations d

Luz5年前 (2021-05-10)1181
We can tell that there must be a lot of redundant calculations during the exhaustive search for the matrix multiplicatio…

单选题:Why doesn't Floyd algorithm work if there are negative-cost cycl

Luz5年前 (2021-05-10)1077
Why doesn't Floyd algorithm work if there are negative-cost cycles?答案:B…

单选题:以下各项中,不是数据报操作特点的是()?

Luz5年前 (2021-05-10)833
以下各项中,不是数据报操作特点的是()?答案:D…

单选题:如下程序段的输出结果是( )。

Luz5年前 (2021-05-10)939
如下程序段的输出结果是( )。```def fun(): x = 20 print(x, end=' ')x = 10fun()print(x)```答案:B…