Основная инструкция:
Вложенный блок инструкций
$ python3
Python 3.7.5 (default, Nov 5 2019, 23:12:00)
[Clang 9.0.0 (clang-900.0.39.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> lst = list('Интерактивный режим')
>>> print(lst)
['И', 'н', 'т', 'е', 'р', 'а', 'к', 'т', 'и', 'в', 'н', 'ы', 'й', ' ', 'р', 'е', 'ж', 'и', 'м']
>>>
lst = list('Запуск программы')
print(lst)
python3 my_program.py
$ python3 my_program.py
['З', 'а', 'п', 'у', 'с', 'к', ' ', 'п', 'р', 'о', 'г', 'р', 'а', 'м', 'м', 'ы']