0
Помогите решить задачу на питоне, не очень понимаю как через input вызвать элементы списка
Места в вашей программе для продажи билетов хранятся в двумерном списке. Каждому месту присваивается буквенный код. Дополните программу, чтобы принимать строку и столбец места в качестве входных данных и выводить соответствующий код из списка (индексы строки и столбца начинаются с 0). Пример Входных Данных 3 2 Пример Выходных Данных k
5 Respuestas
+ 1
Rishi, now, I roughly understood. Thank you😎
0
You can't just give a question and get the answer. Show your attempt, ask where you got stuck exactly, then you'll get many answers. All the best =)
0
Thank 4 ur answer, Rishi, but. I just don't understand what should I do, what literally Task is. I don't get it.
0
So, you have to take two inputs. First input = row
Second input = column
Then, use int() on both input to convert them to integers.
Then you can get the output.
Output = list [row] [column]
This is the logic you should follow.
row = int(input())
column = int(input())
print(seats[row][column])
0
I found another discussion thread for the same question with answers. Here it is
https://www.sololearn.com/Discuss/2751760/lists