TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #205 · 22 јан.

Как работает функция reload()? Эта функция нужна для того, чтобы перезагрузить изменившийся код из py-файла без рестарта интерпретатора. Дело в том, что любой импортированный модуль при повторном импорте не будет перечитывать файл. Функция импорта вернёт уже загруженный в память объект модуля. Чтобы обновить код, нужно либо перезапустить всю программу, либо использовать функцию reload() from importlib import reload reload(my_module) 🔸 Функция reload() принимает в качестве аргумента только объект модуля или пакета. Она не может перезагрузить класс или функцию. Только весь файл целиком! 🔸 Перезагрузка пакета перезагрузит только его файл __init__.py, если он есть. Но не вложенные модули. 🔸Она не может перезагрузить ранее не импортированный модуль. 🔸При вызове функция reload() перечитывает и перекомпилирует код в файле, создавая новые объекты. После создания новых объектов перезаписывается ранее созданный неймспейс этого модуля. Это значит, что если где-то этот модуль импортирован через import и обращение к атрибутам происходит через неймспейс (имя) модуля, то такие атрибуты обновятся. Если какие-либо объекты из этого модуля импортированы через from то они будут ссылаться на старые объекты. Напишем простой модуль # mymodule.py x = 1 Теперь импортируем модуль и отдельно переменную х из модуля >>> import mymodule >>> from mymodule import x >>> print(mymodule.x) 1 >>> print(x) 1 Не перезапуская интерпретатор вносим изменения в модуль # mymodule.py x = 2 Делаем перезагрузку модуля и проверяем х ещё раз >>> reload(mymodule) >>> print(mymodule.x) 2 >>> print(x) 1 То же самое будет если присвоить любой объект переменной (даже словарь или список) Повторный импорт обновляет значение >>> from mymodule import x >>> print(x) 2 🔸Созданные инстансы классов не обновятся после перезагрузки модуля. Их придётся пересоздать. #tricks#basic

Резултати

Пронајдени 1 слични објави

Пребарај: #mandeladay2025

当前筛选 #mandeladay2025清除筛选
Russian Consulate in Cape Town

@rusconct · Post #2843 · 18.07.2025 г., 17:30

🎙 Address by Ambassador of Russia to South Africa Roman Ambarov on the occasion of Mandela Day (July 18,2025) 💬 Dear friends, On July 18, we celebrate #MandelaDay – a holiday officially declared by the United Nations to honor the legacy of the South African statesman and one of the most outstanding champions of human rights, Nelson Mandela. The name Mandela is, without exaggeration, familiar to every person living in the former Soviet republics. For two decades, the slogan “Freedom for Mandela!” echoed through the media and peaceful demonstrations, while our country remained the only major power that consistently refused to engage with the criminal racist regime. 👉 The Soviet Union not only provided substantial financial support to the South African liberation movement but also assisted in training military personnel. Nelson Mandela praised #RussiaSouthAfrica ties in the times of the struggle against apartheid: "In a difficult time, Russia became a second home for many of us. Hundreds of young South Africans received an education here — an opportunity denied to them in their own country. Many of our cadres received military training that turned them into skilled fighters for freedom and justice. <...> For the help in liberating the entire South African nation from an inhumane system, we say from the bottom of our hearts: 'Spasibo bolshoe!'" [Thank you very much in Russian]. The friendship forged in those challenging times for South Africans continues to live on between our nations today — thanks in no small part to Nelson Mandela himself. At the heart of Mandela Day, as established by the UN, lies a principle of action, not words – people are encouraged to perform acts of charity and help those in need. The Russian Embassy in South Africa fully embraces this spirit: as part of this commemorative occasion, Russian diplomats will provide assistance and support to three South African children social facilities. 🤝 I extend my warmest congratulations to all our South African friends on this special day and wish you well-being, prosperity, and strength in pursuing your ideals. #MandelaDay2025