• 2022-07-28
    中国大学MOOC: 已知列表lst=[5,3,2,4,1],则以下能够改变列表lst中的元素顺序,使其按照值从大到小排列的表达式是:
  • lst.sort(reverse=True)

    内容

    • 0

      中国大学MOOC: 已知列表lst=[1,2,3,4,5],则以下表达式不能正确执行的是:

    • 1

      已知列表lst=[1,1,2,2,3,3],则以下表达式的值不为2的是: A: lst.index(2) B: lst.count(2) C: lst.pop(2) D: lst[2:3]

    • 2

      中国大学MOOC: 已知列表lst=[1,2,3,4,5],则以下哪个表达式的值不为5:

    • 3

      中国大学MOOC: 已知列表lst=[1,2,3,4,5],则以下不能在列表最后添加新的元素6的表达式有:

    • 4

      中国大学MOOC: 已知列表lst=[ [1,2,3],[4,5,6],[7,8,9] ],则表达式lst[1][1]的值为: