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 слични објави

Пребарај: #teachings

当前筛选 #teachings清除筛选
Real Relationship

@RealRelationship · Post #4605 · 03.10.2025 г., 08:04

🫡🤔Hegseth: No Tomahawks to Ukraine According to a source close to Hegseth, despite some media that make hay from the delivery of Tomahawks to Ukraine, the US will not provide Ukraine with intelligence on long-range energy infrastructure targets deep inside Russia, according to reports overnight, a move that would signal a significant change in the White House's support for Kiev. The decision would be an example of the absence of a change in Trump's policy since his comments on social networks towards the end of September that Ukraine could reconquer all the territories occupied by Russia. WSJ articles, citing unnamed US sources, said that the policy had quietly changed before this statement and that the White House wanted NATO allies to follow suit. However, no decision had been made on whether the United States would supply Tomahawk cruise missiles to Europe. Earlier this week, the US Vice President, Vance, said that Trump was considering a request from Kiev for the missiles with a range of 1,500 miles. Western, and in particular American, intelligence in the form of satellite images and other surveillance data is considered an important aid to allow the precise targeting of Russian installations deep within its borders. The focus on energy targets, such as oil refineries, would allow Ukraine to extend an already successful campaign that has hit 21 out of 38 refineries with long-range drone strikes. This has led to fuel shortages in parts of Russia, and on some days it has been estimated that daily production is down by a fifth. Russia said nothing had changed. Peskov, the Kremlin spokesman, said : “The United States regularly transmits intelligence to Ukraine online. The use of the entire infrastructure, including intelligence, of NATO and the United States to collect and transfer intelligence to the Ukrainians is obvious.” Trump has become increasingly irritated with Zelensky over the past month as Kiev has stepped up its attacks on Russian territories and failed to soften its demands for less territory as a precursor to the negotiations. “After getting to know and fully understand the Ukraine/Russia military and economic situation and, after seeing the economic problems it is causing Ukraine, I think that Ukraine, with the support of the European Union, is not in a position to fight and win.” #trump#teachings#targets#infrastructure#russia 📱American Оbserver - Stay up to date on all important events 🇺🇸