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

Пребарај: #amabit

当前筛选 #amabit清除筛选

📣The Nexus Wallet and Drop Hunter team announced the launch of a new project – Amabit! 📊 This is a trading broker terminal (all in one), which has strong partners: Binance, Bybit and OKX, 300+ cryptocurrencies are currently available for trading. Tools of the new crypto platform #Amabit: 🟨 Trading on top exchanges 🟨 Ability to connect to trading bots 🟨 Wealth and portfolio management 🟨 Investing in #DeFi 🔥Drop Hunter is slowly transforming into #superapp, which will have the functionality of an exchange, a wallet and a gamified platform for #airdrop. ❤️ In addition, Nexus Wallet also had a big update, adding: 🟨 DEX exchanges 🟨 NFT support 🟨 Simplified withdrawal of funds 🟨 P2P market 🟨 QR NFT and wallet security improvements 🩹 Now there are some technical problems with the game Drop Hunter, but next week the team plans to restart the farming function and fix all the bugs, so we are waiting. Game | Chat | Channel | YouTube | Nexus

☕️Drop Hunter is launching another airdrop, but this time with #Amabit 📊 Amabit is an all-in-one brokerage trading terminal from the Drop Hunter team, which has strong partners: #Binance, #Bybit and #OKX, 300+ cryptocurrencies are currently available for trading, more details here. 💰 A total of 2,000,000 $DROP coins will be distributed between all participants, compared to the airdrop from #Bybit, twice as many tokens, the rewards for each participant have been increased by 4 times, while the number of winners has been reduced by 2 times. The requirements for participation are below: 🟡Launch the bot. 🟡Register on Amabit and complete KYC. 🟡Join the Amabit chat and send a screenshot showing that KYC is completed. 🟡Invite 5 friends (old referrals count). 🟡Buy 1 ticket and wait for the results to be announced. 📇 Additional information for participants – you get 20% of the winning ticket of your friend you invited. This means that if you invited 10 people and they won at least 1 ticket, you will receive 40 #DROP tokens from each ticket. 🟡Drop type – Raffle. 🟡Total volume – 2,000,000 $DROP. 🟡Total winners – 10,000 people. 🟡For each user 200 $DROP for 1 ticket (20,000 points = 1 ticket). 🔥 We remind you that the #DropHunter team is planning a token listing on a major exchange in the fall, so we continue to farm and participate in all their airdrops. Game | Chat | Channel | YouTube | Nexus

💰Drop Hunter launched the first airdrop in $DROP token! 🎟 In #airdrops tab, it is now possible to exchange farmed coins for tickets, which increase the chances of receiving their $DROP token. The conditions are as usual simple: 🟨Log into the bot and go to the "airdrops" tab 🟨 Invite 3 friends and subscribe to the desired channels 🟨 Exchange collected coins for tickets 🟨 Wait for the end and check the internal wallet 🚀 Let us remind you that, according to the team, $DROP is a utility token of the ecosystem, which includes the projects: #Amabit, #DropHunter and #NexusWallet. It will be used to pay for internal services. 💎Rewards: 500K out of 8M total supply. 🟡 Drop type – raffle 🟡 Total winners – 3300 people 🟡 $DROP for each winner 🔥 Closer to autumn, the team is planning to list the #DROP token on a major exchange, so let's continue to farm and participate in all their airdrops. Game | Chat | Channel | YouTube | Nexus