请在 下方输入 要搜索的题目:

Which of the following operational results of built-in data structures of Python is NOT correct?


A、l = [1, 2, 3, 4]; l.insert(2, -1); then l is [1, 2, -1, 4].;

B、l = [1, 2, 3, 4]; l.rerverse(); then l[1] is 3.;

C、l = [1, 2, 3, 4]; l.pop(); then l.index(3) is 2.;

D、l = [1, 2, 3, 4]; l.pop(1); then l is [1, 3, 4].

发布时间:2025-07-17 21:32:47
推荐参考答案 ( 由 快搜搜题库 官方老师解答 )
联系客服
答案:l = [1, 2, 3, 4]; l.insert(2, -1); then l is [1, 2, -1, 4].
专业技术学习
专业技术学习
搜搜题库系统