题目详情
单选题 请阅读下面一段程序: list_one = ["One", "Two"] list_two = ["Three", "Four"] list_one.extend(list_two) print(list_one) 运行程序,其最终执行的结果为( )
A. ['One', 'Two', 'Three', 'Four']
B. ['Three', 'Four', 'One', 'Two']
C. ['One', 'Two', 'Four', 'Three']
D. ['Three', 'Four' , 'Two', 'One']

学科:Python语言程序设计-23-24-1
时间:2023-10-26 02:09:47
相关题目
相关作业
