Quick Quiz on Lists
We'll cover the following...
1
What should be the output of the following code?
print([5,6,7] + [8,9,10])
A)
[13,15,17]
B)
[5,6,7,8,9,10]
Question 1 of 40 attempted
Now ...
What should be the output of the following code?
print([5,6,7] + [8,9,10])
[13,15,17]
[5,6,7,8,9,10]
Now ...