You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
447 B
21 lines
447 B
### Как запускать?
|
|
|
|
Запустить интерпретатор Python с указанием пути до скрипта.
|
|
|
|
Достаточно указать имя файла, находясь в директории
|
|
|
|
```sh
|
|
$ pwd
|
|
/home/apr/edu/22/repos/programming-basics/01
|
|
$ python 01.py
|
|
<...>
|
|
```
|
|
|
|
Или из корня репозитория
|
|
|
|
```sh
|
|
$ pwd
|
|
/home/apr/edu/22/repos/programming-basics
|
|
$ python 01/01.py
|
|
<...>
|
|
```
|
|
|