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

TGINSIGHT SIMILAR POSTS

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

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

Скорее всего уже слышали, что складывать строки через + это плохая практика. Падение производительности, и всё такое. Без лишних слов, давайте измерять: from timeit import timeit def t1(): # складываем 10 строк через + из переменной t = 'text' for _ in range(1000): s = t + t + t + t + t + t + t + t + t def t2(): # склеиваем список строк через метод join arr = ['text'] * 10 for _ in range(1000): s = ''.join(arr) def t3(): # складываем через + но не из переменной а непосредственно инлайн объекты for _ in range(1000): s = 'text' + 'text' + 'text' + ... # всего 10 раз Теперь каждую строку склейки запустим по 10М раз >>> timeit(t1, number=10000) 0.21951690399964718 >>> timeit(t2, number=10000) 1.4978306379998685 >>> timeit(t3, number=10000) 0.2213820789993406 Хм, а нам говорили что через "+" это плохо и медленно ))) 😁 Тут стоит учитывать, что речь идёт о склейке множества длинных строк. Давайте изменим условия: def t4(): t = 'text'*100 for _ in range(1000): s = t + t + t + t + t + t + t + t + t def t5(): arr = ['text'*100] * 10 for _ in range(1000): s = ''.join(arr) def t6(): for _ in range(1000): s = 'text'*100 + 'text'*100 + ... # всего 10 раз >>> timeit(t4, number=10000) 12.795130728000004 >>> timeit(t5, number=10000) 2.642637542999182 >>> timeit(t6, number=10000) 0.2184546610005782 Вот, уже другой разговор, сразу видна разница, в среднем в 6 раз. Но погодите, почему последний тест t6() по скорости такой же как и t3()? Ведь строки теперь в 100 раз длиннее! Это вопросы оптимизации кода, какие простые изменения ускоряют или замедляют выполнение программы. Мы столкнулись с примером обхода обращения к переменной. Например, именно так работает директива #define в С++, во время компиляции подставляя значение переменной вместо ссылки на неё. В Python это тоже работает, но часто ли вы сможете встретить такой способ работы со строками? К сожалению, способ почти только теоретический. В целом, тесты показали то, что мы хотели. Делаем выводы самостоятельно. Полный листинг 🌍 #tricks

Резултати

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

Пребарај: #russiancourses

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

@rusconct · Post #2836 · 16.07.2025 г., 12:28

Free Russian Language Courses in Cape Town! We are pleased to invite everyone to take part in free Russian language courses supported by the Ministry of Education of the Russian Federation and St. Petersburg State University. 👩‍🏫 The lessons will be conducted by Dasha and Taisiya — experienced teachers of Russian as a foreign language with nearly 20 years of teaching experience. 📚 The courses are open to everyone. No prior knowledge of Russian is required. Why learn Russian? 🗣 It is a language spoken across 15 countries and serves as a bridge among more than 160 ethnic groups. 🌍 Studying Russian offers access to a rich cultural, literary, and scientific heritage — from Tolstoy and Dostoevsky to Gagarin and Tchaikovsky. 📖 Course highlights: – Basics of grammar and practical conversation – Introduction to Russian culture and traditions 🔗 Register here: https://forms.gle/p4fo6ttm8esXqtLa6 Let’s explore the Russian language together! #RussiaSouthAfrica#RussianCourses#LearnRussian

Russian House Brussels-Europe

@rushousebrussels · Post #2471 · 23.06.2025 г., 07:33

📚Enrollment is open for the 2025–26 academic year! ⏰24 June | 18:00 Join our Presentation of Russian Language Courses for Adults — meet the teachers and find the perfect program for you: ✨Fundamental Course — from A1 to C1, steady pace (October–June) ⚡️Intensive Course — fast-track A1 to A2, with speaking from day one 🌍Online — learn from anywhere in the world 🏫Offline — full language immersion 👥Group classes — motivation, support & shared experience 👤Individual lessons — flexible schedule, personalized approach 🎉 Plus, learn about our linguistic and cultural events for students! 📅Free participation — sign up via the linkhere #russianlanguage#learnrussian#russiancourses#languagelearning#onlinelearning

Russian House Brussels-Europe

@rushousebrussels · Post #2626 · 24.10.2025 г., 05:41

🏔🇷🇺✨ When your Russian truly reaches new heights! Our student took his Russian — all the way to the Himalayas! 🏔 Russian at 5300 m! Language is more than words. It’s a journey, an inspiration, and the strength that lifts you higher. Our student is traveling in the Himalayas and… he used Russian at the top of a mountain! 😄 “I told them I study Russian at the Russian Language School in Brussels. And that I have very good teachers!” Even at the highest heights, you can talk about poetry, music and your favorite language. 😉 Did you know? Russian is one of the six official international languages and is spoken by an estimated up to 285 million people worldwide. 📍Where have you used your Russian abroad? Share your story in the comments — the most inspiring ones will be featured! Join us to learn Russian! We offer in-person classes, online courses, and individual lessons. #RussianHouseBrussels#LearnRussian#RussianLanguage#CulturalDiplomacy#RussianAbroad#DiscoverRussia#RussianCourses