There is a list that still has lists. For example:
Date = ['Команда1', ['Даты', ['27-28.04.2019', '20.04.2019'], ['События',['Событие1', 'Событие2']]]]
I know how to add a simple value to the Date list, but I don’t know how to stuff a value into the list that comes after the word "Dates".
How to write Date.append()
correctly or what can be used instead? I tried Date.extend()
, but this method breaks the string into characters and simply inserts them.