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

Резултати

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

Пребарај: #tradingcontest

当前筛选 #tradingcontest清除筛选
SingSing Announcement

@singsingchannel · Post #723 · 20.07.2024 г., 04:54

🤔Why join the NFT Trading Contest? 1️⃣Total prize pool of 0.1 ETH (~$350) 2️⃣Win up to 0.01 ETH (~$35) per winner 3️⃣Owning an NFT grants you a seat in our exclusive airdrop event 🎁 4️⃣Special benefit: Owning NFT allows to use RUBY within our SocialFi partners ecosystem 🌐 5️⃣Time to grab your SingSing NFTs is coming to an end soon ⏳ Don’t miss out - Trade Now🚀 Read more and Open Treasure at: X Post #NFT#Crypto#TradingContest#SingSing

SingSing Announcement

@singsingchannel · Post #1002 · 14.11.2024 г., 06:30

🚀$SING Trading Contest on CoinEx is COMING! 💰 Prize Pool: 500,000 $SING(~$9,000) 🗓 Duration: 10AM UTC, Nov 14 - 10AM UTC, Nov 21 Note: ✅All CoinEx users who apply on the promotion page can join (Market Makers excluded). ✅Rewards are based on Spot trading volume ranking. Cumulative volume = Buying + Selling volume in selected markets. Self-matching orders won’t be counted. ✅Market Making accounts are excluded from this event. ✅Sub-accounts cannot join independently; their volume will be counted in the main accounts. ✅Any cheating (batch registration, self-dealing, etc.) will result in disqualification. ✅FAQ About Spot Trading Volume Ranking 🔗 Full details: https://www.coinex.com/en/announcements/detail/32123383532948 #SingSing#TradingContest#CoinEx

SingSing Announcement

@singsingchannel · Post #1009 · 14.11.2024 г., 12:00

🚀2️⃣Separate $SING Trading Contests are NOW LIVE! ✅$SING Trading Contest on BingX 💰 Prize Pool: 2,800,000 $SING (~$50,400) 🗓 Duration: 12PM UTC, Nov 14 - 12PM UTC, Nov 21 Contest is exclusive to newly registered accounts on BingX from 12PM UTC, Nov 14 onwards. 🔗 Full details: https://bingx.com/en/act/contest2/7777/?randomId=6898941344&ref=0PUIUW ✅$SING Trading Contest on CoinEx 💰 Prize Pool: 500,000 $SING (~$9,000) 🗓 Duration: 10AM UTC, Nov 14 - 10AM UTC, Nov 21 🔗 Full details: https://www.coinex.com/en/announcements/detail/32123383532948 ------------------------------ Note: You can participate and receive rewards from 2 contests at the same time Good luck! 🌟 #SingSing#TradingContest#BingX#Coinex

SingSing Announcement

@singsingchannel · Post #739 · 25.07.2024 г., 06:46

🚀 Don't miss out on our exciting ongoing programs at SingSing! 🌟 1️⃣NFT Trading Contest with reward of $35 per winner🏆 2️⃣ Invite Frens to get 20% cashback when your friends claim RUBY and 5% every time their referrals claim it👥 3️⃣ Play to Air with Cowtopia🐄 4️⃣ Boost RUBY by buying Boost Item💎 Join now and get the most out of your SingSing experience! #SingSing#TradingContest#InviteFrens#PlayToAir#BoostRUBY