Here is the Question:
What would the following code display:
def main():
numbers = [0, 1, 2] * 3
print(numbers)
main()
A : An error
B : 0, 1, 2
C : [0, 1, 2, 0, 1, 2, 0, 1, 2]
D : [0, 3, 6]
I looked over all of the answers and I think the answer is: D.
Am I wrong I’m not entirely sure it’s that one it’s just my best guess. (It only seems reasonable).