what is the output of the following code a=[132,526,127] a.append([827]) extend([425,627]) print a
Answers
Answered by
1
Answer:
hello,
Explanation:
a=[132,526,127]
a.append([827])
a.extend([425,627])
print (a)
the output of the following code is:
[132, 526, 127, [827], 425, 627]
hope it helps you
please mark brainliest
@ItzSnowySecret07
Similar questions