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?
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