list | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

list

The seats in your ticketing program are stored in a 2D list. Each seat is assigned a letter code. Complete the program to take the seat row and column as input and output the corresponding code from the list (row and column indices start from 0). Pls what am i asked to do here?

17th Dec 2021, 12:36 PM
Oluwaseunfunmi Adeniji
1 Answer
0
given seats = [ ['a', 'b', 'c'], ['d', 'e', 'f'], ['g', 'h', 'i'], ['j', 'k', 'l'] ] using list in python #your code goes here
17th Dec 2021, 7:09 PM
Oluwaseunfunmi Adeniji