Q. What is the output of the given code?
a=[["a","b"]]
b=[["e","a"]]
print a + b
a=[["a","b"]]
b=[["e","a"]]
print a + b
β
Correct Answer: (A)
[["a", "b"], ["e", "a"]].
You must be Logged in to update hint/solution