Первая директория в sys.path
🔸 Когда вы запускаете Python-интерпретатор в интерактивном режиме, в системные пути (sys.path) в самое начало добавляется текущая рабочая директория
>>> for path in sys.path:
... print(f'"{path}"')
""
"/usr/lib/python37.zip"
"/usr/lib/python3.7"
...
Первая строка пустая, что и означает текущую рабочую директорию.
🔸 Если вы запускаете интерпретатор передавая скрипт как аргумент, то история получается иная. На первом месте будет директория в которой располагается скрипт. А текущая рабочая директория игнорируется.
Пишем скрипт с таким содержанием:
# script.py
import sys
for path in sys.path:
print(f'"{path}"')
Запускаем
python3 /home/user/dev/script.py
Получаем
"/home/user/dev"
"/usr/lib/python37.zip"
"/usr/lib/python3.7"
...
🔸 Если вы запускаете скрипт по имени модуля то на первом месте будет домашняя директория текущего юзера
python3 -m script
"/home/user"
"/usr/lib/python37.zip"
"/usr/lib/python3.7"
...
Скрипт должен быть доступен для импорта
На что это влияет?
На видимость модулей для импорта. Если вы ждёте, что, запустив скрипт по пути, сможете импортировать модули из текущей рабочей директории, то вы ошибаетесь. Придётся добавлять путь os.getcwd() в sys.path самостоятельно или заранее объявлять переменную PYTHONPATH.
#basic
If it’s painful for you to criticize your friends, you’re safe in doing it; if you take the slightest pleasure in it, that’s the time to hold your tongue.
– Alice Miller
#friendship@quietworld🍃
As you get older real friendships don’t mean you see each other everyday. In fact some of the realest friends barely see each other, if you both are really out chasing your bags, tryna better your futures, you probably won’t see each other as often.
#friendship@quietworld🍃
Dear folks, this is a translation of one famous poem of one famous poet into English.
Can you please review it and let me know, if it sounds correct, or does it contain enything weird, odd ?
/********************************************/
I like to feel that I'm not sick with you
I like to know that sickness yours is yours not mine
That heavy ball of earth won’t stray off from its course
Away from our footprints , fading in sunshine
I love that I could funny be
Bewildered, clumsy , not wordplaying
not turning red upon sleeves touching game
not turning pale when see you on your knees
I love to see you hugging someone else
Before my eyes , reposefully and calmly
Not sending me to fire glowing hell
To burn forever for not kissing me , my darling
I like that mentioning my name is not your habit
That tender name you don't utter day-and-night in vain
That no one's gonna sing Hallelujah on our wedding
In silence of the church, one sunny autumn day
Thank you for love, with all your heart and soul
That brings me peace at night, unconscious, unaware
Thank you for rare meetings if at all
So nice, That never in the moonlight do we stroll
So great that sun warms not us, soaring high elsewhere
So pity, that I am not sick with you
So bad, that sickness yours is yours not mine
#review
#friendship