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

TGINSIGHT SIMILAR POSTS

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

Изворен канал @pythonotes · Post #309 · 2 фев.

Метод строки split() разделяет строку на несколько строк по указанному символу >>> "a_b_c".split('_') ['a', 'b', 'c'] Можно указать максимальное количество разделений >>> "a_b_c".split('_', 1) ['a', 'b_c'] Или резать с другой стороны с помощью rsplit() (right split) >>> "a_b_c".rsplit('_', 1) ['a_b', 'c'] А что будет если оставить аргументы пустыми? >>> "a_b_c".split() ['a_b_c'] Получаем список с одним элементом, потому что по умолчанию используется пробельный символ. >>> "a b c".split() ['a', 'b', 'c'] То есть это равнозначно такому вызову? >>> "a b c".split(" ") ['a', 'b', 'c'] Кажется да, но нет! Давайте попробуем добавить пробелов между буквами >>> "a b c".split(" ") ['a', '', '', 'b', '', '', 'c'] И вот картина уже не так предсказуема 😕 А вот что будет по умолчанию >>> "a b c".split() ['a', 'b', 'c'] Всё снова красиво! 🤩 По умолчанию в качестве разделителя используется любой пробельный символ, будь то табуляция или новая строка. Включая несколько таких символов идущих подряд. А также игнорируются пробельные символы по краям строки. >>> "a\t b\n c ".split() ['a', 'b', 'c'] Аналогичный способ можно собрать с помощью регулярного выражения. Но пробелы по краям строки придется обрабатывать дополнительно. >>> import re >>> re.split(r"\s+", ' a b c '.strip()) ['a', 'b', 'c'] Здесь тоже можно указать количество разделений >>> re.split(r"\s+", 'a b c', 1) ['a', 'b c'] А что если мы хотим написать красиво, то есть split() без аргументов, но при этом указать количество разделений? В этом случае первым аргументом передаём None >>> "a\n b c".split(None, 1) ['a', 'b c'] Данный метод не учитывает строки с пробелами, взятые в кавычки 'a "b c" '.split() ['a', '"b', 'c"'] Но для таких случаев есть другие способы. #tricks#basic

Резултати

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

Пребарај: #waw2025

当前筛选 #waw2025清除筛选
Rosatom Global

@rosatom_global · Post #211 · 26.09.2025 г., 14:44

🌐BRICS Nuclear Energy Platform: shaping the future of global nuclear energy On 26 September 2025, Moscow hosted the annual conference of the BRICS Nuclear Energy Platform as part of World Atomic Week (WAW-2025). The event brought together leaders and partners from Brazil, Vietnam, Egypt, Indonesia, Iran, China, South Africa, the UAE, Ethiopia, Turkey, and the ASEAN Energy Hub to discuss 2025 results and plans for 2026. A key moment of the conference was the approval of the Platform’s first strategic concept, outlining priorities such as human resource development, fundraising for nuclear projects, supply chain sustainability, reactor construction, nuclear fuel cycle technologies, and public acceptance of nuclear energy. Elsie Pule, Chief Coordinator of the Platform, emphasized the growing global role of BRICS: “According to her, the group accounts for almost one-third of operating NPPs and more than 70% currently under-construction power units. Elsie Pule predicted that the BRICS’s share would be least two-thirds of all new nuclear capacity added to the global NPP fleet by 2030.” Alexey Likhachev also highlighted Rosatom’s commitment to international cooperation: “By tradition, Rosatom supports international cooperation, partnerships, and the exchange of best practices as we believe that the development of safe, sustainable and innovative energy - especially nuclear energy - is only possible through joint efforts. A year and a half ago, Rosatom joined the initiative for creating the BRICS Nuclear Energy Platform. Over the first year, the Platform became the site for direct exchange of experience, knowledge, and technologies for public and private companies. The addition of new members is important and symbolic as it confirms that the number of partners sharing our goals and values is increasing.” During the conference, Nucleo Brasil Energia Participações Ltd. officially joined the Platform, further strengthening international collaboration in nuclear energy. #Rosatom#BRICS#NuclearEnergy#WAW2025#InternationalCooperation