A.upper()B.lower()C.capitalize()D.title()E.swapcase()
多项选择题在Python中,以下哪些选项可以用于对列表lst =[3,1,4,1,5,9,2,6,5,3,5]进行排序?()
A.sorted(lst)B.lst.sort()C.lst.sorted()D.sort(lst)E.lst.order()
多项选择题在Python中,以下哪些选项可以用于获取列表lst =[1,2,3,4,5]的最后一个元素?()
A.lst[-1]B.lst[len(lst)-1]C.lst[5]D.lst.pop()E.lst.last()
多项选择题在Python中,以下哪些选项可以用于将字符串s = Hello,World! 转换为全大写形式?()
A.s.upper()B.s.toUpperCase()C.str.upper(s)D.s.capitalize()E.s.lower()
多项选择题以下哪些是Python中的列表方法?()
A.appendB.extendC.insertD.removeE.pop
多项选择题以下哪些是Python中的模块导入方式?()
A.importB.from...importC.import...asD.from...import...asE.import *