This commit is contained in:
Alexander Popov 2023-01-22 06:12:13 +03:00
parent cac1c5623d
commit 0bc99fe520
Signed by: iiiypuk
GPG Key ID: D8C9B59A9F04A70C
2 changed files with 5 additions and 0 deletions

View File

@ -1,4 +1,7 @@
# Python
## std
- [`os_env.py`](os_env.py) - Получение значений переменных окружения
## Stuff
- [`irc-bot.py`](irc-bot.py) - Простой IRC бот на Python 3

2
~/Python/os_env.py Normal file
View File

@ -0,0 +1,2 @@
import os
print(os.environ['HOME'])