Question from the Python - Fundamentals test

Create a list of tuples with the values 1, 2, 3 and A, B, C in Python

Medium

The list l has the following value :

[(1, 'A'),
 (1, 'B'),
 (1, 'C'),
 (2, 'A'),
 (2, 'B'),
 (2, 'C'),
 (3, 'A'),
 (3, 'B'),
 (3, 'C')]

Which of these definitions are correct ?

Author: ThéoStatus: PublishedQuestion passed 85 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!