Skip to content
Snippets Groups Projects
Commit d329dbcb authored by Aleksandr Vodianov's avatar Aleksandr Vodianov
Browse files

fixed gitignore

parent 15f09566
No related branches found
No related tags found
No related merge requests found
# Импортируем модуль os
import os
# Импортируем модуль sys
import sys
while True:
# Принимаем имя переменной среды
key_value = input(«Enter the key of the environment variable:»)
# Проверяем, инициализирована ли переменная
try:
if os.environ[key_value]:
print(«The value of», key_value, » is «, os.environ[key_value])
# Если переменной не присвоено значение, то ошибка
except KeyError:
print(key_value, ‘environment variable is not set.’)
# Завершаем процесс выполнения скрипта
sys.exit(1)
\ No newline at end of file
build/*
example/tmp
example/var
*.text
_skbuild/
.pybuild/
dist/
CellFrame.egg-info/
debian/*.log
debian/*.debhelper
debian/*.substvars
debian/python3-cellframe-doc/
debian/python3-cellframe/
debian/files
*.text
CMakeLists.txt.user*
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment