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

Резултати

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

Пребарај: #archivotn

当前筛选 #archivotn清除筛选
Tremenda Nota | Revista marginal

@TremendaNota_Cuba · Post #1220 · 14.08.2021 г., 19:50

#ArchivoTN🏳️‍🌈 Hoy queremos traer de regreso estas historias escritas en el 2018 para nuestro apartado Tarekos, sobre mitos y leyendas con un fondo de violencia y estigmatización hacia la mujer. ✒📸 Yariel Valdés González 🎨 Alexei Gómez https://www.tremendanota.com/tarekos-mitos-leyendas/

Hashtags

Tremenda Nota | Revista marginal

@TremendaNota_Cuba · Post #1219 · 14.08.2021 г., 18:21

#ArchivoTN🏳️‍🌈 Hoy queremos traer de regreso estas historias escritas en el 2018 para nuestro apartado Tarekos, sobre mitos y leyendas con un fondo de violencia y estigmatización hacia la mujer. ✒📸 Yariel Valdés González 🎨 Alexei Gómez https://www.tremendanota.com/tarekos-mitos-leyendas/

Hashtags

Tremenda Nota | Revista marginal

@TremendaNota_Cuba · Post #1187 · 31.07.2021 г., 15:30

Diubis murió durante las protestas del pasado 11 de julio en Cuba Es el único fallecido que reconocen las autoridades cubanas. La periodista Darcy Borrero verificó la poca información disponible y encontró nuevos datos sobre este joven de 36 años. #ArchivoTN ✍️Darcy Borrero Batista 🎨Polari https://www.tremendanota.com/la-guinera-puso-el-muerto-que-cuba-no-queria/

Hashtags

Tremenda Nota | Revista marginal

@TremendaNota_Cuba · Post #1105 · 04.07.2021 г., 20:30

No es una simple historia de prostitución. Es la versión cubana de un estilo de estafar internacional, posible gracias a internet, con el cebo siempre tentador de sexo 👇🏻 ✍Sadiel Mederos Bermúdez 🎨Polari #ArchivoTN https://www.tremendanota.com/dos-historias-de-sexo-pagado-en-cuba-una-convencional-y-otra-extraordinaria/

Hashtags

Tremenda Nota | Revista marginal

@TremendaNota_Cuba · Post #1057 · 20.06.2021 г., 00:09

Crónica errante de un periodista maldito Alcohólico y nómada; un viajero incansable con 12 países recorridos durante cinco años de exilio mochilero. Tres personalidades y varios alter egos: en estas páginas grita y blasfema el periodista cubano Héctor Reyes. #ArchivoTN https://www.tremendanota.com/cronica-errante-de-un-periodista-maldito/?fbclid=IwAR1T4esqTz1valZXkT19SZk9oE3KK_aLs46ByPwmc0ORABq_7Uc5D1-zGEQ

Hashtags

Tremenda Nota | Revista marginal

@TremendaNota_Cuba · Post #1056 · 19.06.2021 г., 16:58

La Iglesia Metodista publicó este martes una declaración contra el matrimonio LGBTI+, como han hecho otras organizaciones cristianas en los últimos días. Pero no solo se posicionaron sobre este tema. También pidieron al gobierno una ley de cultos religiosos. #ArchivoTN🏳️‍🌈 https://www.tremendanota.com/la-iglesia-metodista-en-cuba-se-declara-contra-el-matrimonio-lgbti-y-reclama-una-ley-que-garantice-la-libertad-de-culto/

Hashtags

Tremenda Nota | Revista marginal

@TremendaNota_Cuba · Post #918 · 31.03.2021 г., 21:50

«No hay un cartel que señale «La Bombonera», pero ellas saben que en Industria 318 está su casa: un espacio de renta en el centro de La Habana, abierto exclusivamente para las chicas trans y sus novios.» La Bombonera: un hostal habanero para las trans ✍Darcy Borrero Batista #ArchivoTN https://www.tremendanota.com/la-bombonera-un-hostal-habanero-para-las-trans/

Hashtags

Tremenda Nota | Revista marginal

@TremendaNota_Cuba · Post #917 · 31.03.2021 г., 21:50

«La consulta popular sobre las personas trans en nuestro país —presumiendo que en su momento se hará tal y como con el matrimonio igualitario— pareciera que se ha adelantado. No ha hecho falta que la Asamblea Nacional del Poder Popular anuncie su voluntad de legislar a favor de las personas trans y que dicha voluntad será sometida a consulta. No ha hecho falta. El debate está aquí. Ya comenzó.» Debates trans en Cuba: desinformación, transfobia y otros errores en el c(s)istema (I) ✍Mel Herrera #ArchivoTN https://www.tremendanota.com/debates-trans-en-cuba-desinformacion-transfobia-y-otros-errores-en-el-csistema-i/

Hashtags

123•••56
ПретходнаСтраница 1 од 6Следна