@QuietWorld · Post #7554 · 12.08.2020 г., 11:41
the tone and the way you talk about something, makes a difference. #fact@quietworld🍃
Hashtags
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #201 · 13 јан.
Мы уже знаем, что на текущую сессию интерпретатора изменение PYTHONPATH никак не повлияет. Но если вы запустите дочерний процесс, то он унаследует окружение текущего процесса, а значит и изменения в любых переменных будут на него влиять. Вот небольшой пример: Объявляем переменную user@host:~$ export PYTHONPATH=/path1 Запускаем интерпретатор user@host:~$ python3 Проверим что в sys.path >>> import sys >>> print(sys.path) ['', '/path1', '/usr/lib/...', ...] Добавляем что-то в переменную >>> import os >>> os.emviron['PYTHONPATH'] = '/path1:/path2' >>> print(sys.path) ['', '/path1', '/usr/lib/...', ...] Изменений нет. Но давайте запустим дочерний процесс и посмотрим там >>> os.system('python3') # теперь мы находимся в другом процессе >>> import sys >>> print(sys.path) ['', '/path1', '/path2', '/usr/lib/...', ...] Тоже самое будет и с subprocess, так как по умолчанию текущее окружение тоже наследуется. >>> import subprocess >>> subprocess.call(['python3', '-c', 'import sys;print(sys.path)']) ['', '/path1', '/path2', '/usr/lib/...', ...] ______________________ Лучшей практикой является передача энвайронмента явно через аргумент env! import subprocess subprocess.call(cmd, env={'PYTHONPATH': '...'}) Это поможет точно понимать какое окружение будет у запускаемого процесса и при этом не изменять окружение текущего процесса. #basic
Hashtags
Пребарај: #fact
@QuietWorld · Post #7554 · 12.08.2020 г., 11:41
the tone and the way you talk about something, makes a difference. #fact@quietworld🍃
Hashtags
@QuietWorld · Post #6420 · 30.04.2019 г., 17:54
true 💯💯 #fact@quietworld🍃
Hashtags
@PlanetRong · Post #3482 · 11.02.2020 г., 17:18
#fact 我能听到 19500Hz 的声音。 20000Hz 有微弱听觉,戴上耳机能感觉到。 18000Hz 以下有较敏锐的听觉。 (我能确定听到的不是因为各种原因导致的杂音,高频正弦波的听感还是很好区分的
Hashtags
@whysoserioushmmm · Post #3470 · 26.04.2020 г., 11:30
Celebrities need us more than we need them. #fact
Hashtags
@whysoserioushmmm · Post #3274 · 20.03.2020 г., 09:57
Karma has no menu. You get served what you deserve. #fact @whysoserioushmmm
Hashtags
@whysoserioushmmm · Post #3266 · 19.03.2020 г., 06:40
Even though hand sanitizer kills 99.9% of germs, only 0.1% of germs actually make us sick #fact @whysoserioushmmm
Hashtags
@whysoserioushmmm · Post #3191 · 02.03.2020 г., 12:35
Bullet proof vests, fire escapes, windshield wipers and laser printers were all invented by women. #fact @whysoserioushmmm
Hashtags
@astronomic · Post #3032 · 10.10.2022 г., 17:13
Ceres accounts for one third of the mass in the asteroid belt. #Fact
Hashtags
@PlanetRong · Post #2997 · 07.01.2020 г., 17:28
#fact 两天总睡眠时间不足4h
Hashtags
@whysoserioushmmm · Post #2914 · 31.01.2020 г., 15:54
Vitamin D Doesn't come from the sun🌞; it comes from our skin. Sunlight☀️ is the factor that converts cholesterol in our skin to vitamin D3. #fact @whysoserioushmmm
Hashtags
@whysoserioushmmm · Post #2913 · 31.01.2020 г., 15:54
Mobile phones have 18 times more bacteria than Toilet🚽 Handles. #fact @whysoserioushmmm
Hashtags
@whysoserioushmmm · Post #2911 · 31.01.2020 г., 15:54
A 2014 study estimates that the human body consists of 39 trillion bacteria & 30 trillion human cells. #fact @whysoserioushmmm
Hashtags