请阅读下面一段程序: 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']