执行以下代码后,brunch的值为()。L1 = ["bacon", "eggs"]L2 = ["toast", "jam"]brunch = L1L1.append("juice")brunch.extend(L2)
A. ['bacon', 'eggs', 'toast', 'jam']
B. ['bacon', 'eggs', 'juice', 'toast', 'jam']
C. ['bacon', 'eggs', 'juice', ['toast', 'jam']]
D. ['bacon', 'eggs', ['toast', 'jam']]