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

Резултати

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

Пребарај: #goodluck

当前筛选 #goodluck清除筛选
Ethio-Djibouti Railway S.C.

@ethiodjiboutirailway · Post #3001 · 25.08.2025 г., 11:48

We sincerely wish you a wonderful and productive week! May this week bring you success, fulfillment, and the rewards of your hard work. 📢 By clicking the button below, you can apply for the Ethio-Djibouti Railway recruitment program for 100 train crew positions. https://edrsc.com/vacancy-2/ Ethio-Djibouti Railway Connecting Business Find us on: Facebook: https://www.facebook.com/share/15vDenutJd/?mibextid=wwXIfr Telegram: https://t.me/ethiodjiboutirailway Web: https://www.edrsc.com TikTok: @ethiodjiboutirailway Call center: 9546 #Have_a_nice_week #GoodLuck!

INHA University in Tashkent

@inha_uz · Post #7292 · 14.06.2024 г., 10:39

☄️🔠🔠🔠🔠🔠🔠🔠🔠🔠🔠🔠🔠🔠🔠🔠☄️ Attention all prospective students! Please kindly note that the deadline for the application submission for the second entrance exams of IUT is today, June 14, by 5 PM. This is a last chance for those who want to register for the exam now or re-submit the application in case any mistakes are found after reviewing. 📱Application platform 🖱 Please, don't hesitate to reach out to us if you have any last-minute questions or need assistance with your application via: 📞71 289 99 99 (0400) ✈️@askinhabot ➖➖➖➖➖➖➖➖➖➖ 🎬Application process tutorial Best of luck on your application process and exams! IUT Admission Team #IUTAdmissions2024#ApplicationDeadline#ProspectiveStudents#GoodLuck

☄️🔠🔠🔠🔠🔠🔠🔠🔠🔠🔠🔠🔠🔠🔠🔠☄️ Attention all prospective students! Please kindly note that the deadline for the application submission for the second entrance exams of IUT is today, June 14, by 5 PM. This is a last chance for those who want to register for the exam now or re-submit the application in case any mistakes are found after reviewing. 📱Application platform🖱 Please, don't hesitate to reach out to us if you have any last-minute questions or need assistance with your application via: 📞71 289 99 99 (0400) ✈️@askinhabot ➖➖➖➖➖➖➖➖➖➖ 🎬Application process tutorial Best of luck on your application process and exams! IUT Admission Team #IUTAdmissions2024#ApplicationDeadline#ProspectiveStudents#GoodLuck

Luna Everly

@lunaeverly · Post #67 · 02.02.2026 г., 08:24

Headed to the office for my first internship! 👩‍💼☕️ A little nervous, but also excited for new connections and experience. Wish me luck today — I'll definitely need it! Выхожу в офис на первую практику! 👩‍💼☕️ Немного волнуюсь, но и жду новых знакомств и опыта. Пожелайте мне удачи сегодня — она точно понадобится! #LunaEverly#Internship#Workday#GoodLuck#NewExperience

Google Facts™ [ ️@googlefactss🌎]

@googlefactss · Post #40300 · 11.12.2025 г., 19:05

“Knock on wood” is a saying people use to avoid bad luck. It may come from old beliefs that trees have spirits or from the Christian cross made of wood. Different countries have their own ways to “knock on wood” to stay lucky. For example, in Italy, people “touch iron,” and in Turkey, they knock twice and pull their earlobe. 🌳🙏🍀 [Read more] @googlefactss #KnockOnWood#GoodLuck#Superstition#Idioms#Culture