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

Пребарај: #speeddemon

当前筛选 #speeddemon清除筛选
Auto Life

@revheadcrypto · Post #464 · 08.09.2024 г., 16:39

🌟 Exciting News for Supercar Enthusiasts! 🚗💨 The British have officially kicked off production of the stunning Ginetta Akula! 🦈✨ First unveiled in 2019, this masterpiece is limited to just 20 units, starting at £275,000. 💰 Featuring a classic design, the Akula boasts a powerful 6.4L V8 engine with 600 hp, paired with a manual transmission and rear-wheel drive. 🔥 Despite its robust engine, it weighs only 1.2 tons, accelerating from 0 to 100 km/h in just 2.9 seconds! ⚡️🏁 With a top speed of 290 km/h, this beauty is ready to roar! Are you ready to experience the thrill? 😍 #GinettaAkula#Supercar#LimitedEdition#V8Power#CarEnthusiast#LuxuryCars#SpeedDemon#Auto

Auto Life

@revheadcrypto · Post #143 · 21.07.2024 г., 13:35

🚀 Introducing the ultimate beast on wheels - Xiaomi's SU7 Ultra! With a whopping 1548 horsepower from its three electric motors, this sedan accelerates from 0 to 100 km/h in just 1.97 seconds and hits 200 km/h in 5.96 seconds. It boasts a top speed exceeding 350 km/h! 🏎️ #Xiaomi#SU7Ultra#SpeedDemon#ElectricPower#NurburgringRecordBreaker🏁🔥

Auto Life

@revheadcrypto · Post #642 · 17.11.2024 г., 09:21

🚀Bugatti Mistral Sets New Speed Record for Roadsters!🚀 The stunning hypercar with an open top has achieved an incredible speed of 453.91 km/h on the ATP track in Papenburg, Germany! 🇩🇪🏁 Behind the wheel was none other than Andy Wallace, Bugatti's official driver and winner of the 24 Hours of Le Mans! 🏆 This remarkable feat surpasses Bugatti's previous record set in 2013 with the Veyron Grand Sport Vitesse, which reached 408.8 km/h. The title was briefly held by the Hennessey Venom GT Spyder at 427 km/h. The Mistral is powered by an astonishing 8.0-liter W16 engine with four turbochargers, delivering a mind-blowing 1600 hp! 🔥💨 #BugattiMistral#SpeedRecord#Hypercar#W16#AndyWallace#CarEnthusiast#LuxuryCars#AutomotiveExcellence#SpeedDemon#RecordBreaker#Auto