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

Резултати

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

Пребарај: #leeds

当前筛选 #leeds清除筛选
Ultimora.net - POLITICS

@UltimoraPOlitics · Post #38550 · 06.05.2022 г., 16:00

#Elezioni#RegnoUnito#Amministrative Consiglio di #Leeds, risultati definitivi: #LAB|S&D: 21 (+2) #CON|ECR: 6 (-2) Morley Borough Independents: 3 #LDEM|RE: 2 (-1) #Greens|G/EFA: 1 #SDP|Centro-sinistra euroscettico conservatore: 1 (+1) Attuale composizione del Consiglio: #LAB|S&D: 57 #CON|ECR: 21 #LDEM|RE: 7 Morley Borough Independents: 3 Garforth & Swillington Independents: 3 #Greens|G/EFA: 3 Indipendenti: 2 #SDP|Centro-sinistra euroscettico conservatore: 1 I LAB mantengono il controllo del Consiglio. @UltimoraPolitics

AI match predictions

@ai_match_prediction · Post #11664 · 22.04.2026 г., 13:05

England Premier League🏴󠁧󠁢󠁥󠁮󠁧󠁿 2026-04-22 19:00 UTC Bournemouth vs. Leeds Predicted outcome: Draw✅ Predicted score: 1:1 Actual: Draw 2:2 #Bournemouth#Leeds 2026-04-22 19:00 UTC Burnley vs. Manchester City Predicted outcome: Manchester City✅ Predicted score: 1:3 Actual: Manchester City 0:1 #Burnley#ManchesterCity #Football#PremierLeague

AI match predictions

@ai_match_prediction · Post #11116 · 21.03.2026 г., 05:05

England Premier League🏴󠁧󠁢󠁥󠁮󠁧󠁿 2026-03-21 12:30 UTC Brighton vs. Liverpool Predicted outcome: Draw❌ Predicted score: 1:1 Actual: Brighton 2:1 #Brighton#Liverpool 2026-03-21 15:00 UTC Fulham vs. Burnley Predicted outcome: Fulham✅ Predicted score: 2:1 Actual: Fulham 3:1 #Fulham#Burnley 2026-03-21 17:30 UTC Everton vs. Chelsea Predicted outcome: Chelsea❌ Predicted score: 1:2 Actual: Everton 3:0 #Everton#Chelsea 2026-03-21 20:00 UTC Leeds vs. Brentford Predicted outcome: Draw✅ Predicted score: 2:2 Actual: Draw 0:0 #Leeds#Brentford #Football#PremierLeague

AI match predictions

@ai_match_prediction · Post #11558 · 18.04.2026 г., 05:05

England Premier League🏴󠁧󠁢󠁥󠁮󠁧󠁿 2026-04-18 11:30 UTC Brentford vs. Fulham Predicted outcome: Brentford❌ Predicted score: 2:1 Actual: Draw 0:0 #Brentford#Fulham 2026-04-18 14:00 UTC Newcastle vs. Bournemouth Predicted outcome: Draw❌ Predicted score: 2:2 Actual: Bournemouth 1:2 #Newcastle#Bournemouth 2026-04-18 14:00 UTC Leeds vs. Wolves Predicted outcome: Leeds✅ Predicted score: 2:1 Actual: Leeds 3:0 #Leeds#Wolves 2026-04-18 16:30 UTC Tottenham vs. Brighton Predicted outcome: Brighton❌ Predicted score: 1:2 Actual: Draw 2:2 #Tottenham#Brighton 2026-04-18 19:00 UTC Chelsea vs. Manchester United Predicted outcome: Draw❌ Predicted score: 2:2 Actual: Manchester United 0:1 #Chelsea#ManchesterUnited #Football#PremierLeague