What is the result of the following operation? ['A', 'B', 'C'] * 3

Questions & AnswersCategory: PythonWhat is the result of the following operation? ['A', 'B', 'C'] * 3
Lokesh Kumar Staff asked 2 years ago

What is the result of the following operation?

['A', 'B', 'C'] * 3

a. The operation cannot be performed. You cannot multiply an object of type list by an object of type int.
b. [‘A’, ‘B’, ‘C’, ‘A’, ‘B’, ‘C’, ‘A’, B’, ‘C’]
c. [‘A’, ‘B’, ‘C’, 3]
d. [‘AAA’, ‘BBB’, ‘CCC’]
e. [‘A’, ‘B’, ‘C’]