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

Резултати

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

Пребарај: #dvm

当前筛选 #dvm清除筛选
Vet_opportunities

@vet_opportunities · Post #475 · 04.05.2026 г., 13:01

Oromia Agriculture Bureau Positions: (TRANSFER) #DVM: 1 #VLT: 1 Requirements: DVM: 8 years of experience VLT: 2 years of experience Deadline: 28/08/2018 Application: Submit your application to the Oromia Agriculture Bureau Human Resources Office in Addis Ababa or Borana. Don’t forget to share 🙌 👇👇 @vet_opportunities @vet_opportunities @vet_opportunities @vet_opportunities

Hashtags

VET's HUB ®

@vets_hub · Post #30111 · 02.11.2025 г., 03:45

BOOK 𝗦𝗺𝗮𝗹𝗹 𝗔𝗻𝗶𝗺𝗮𝗹 𝗜𝗻𝘁𝗲𝗿𝗻𝗮𝗹 𝗠𝗲𝗱𝗶𝗰𝗶𝗻𝗲 🩺🐈🐕 ✒️ 🔸Richard W. Nelson 🔸C. Guillermo Couto With hundreds of images, step-by-step procedures, and a practical clinical emphasis, Small Animal Internal Medicine, 6th Edition offers the foundation and tools you need to properly recognize, diagnose, and treat small animals with common internal conditions. 📚Elsevier 📖 1608 Pages - 𝗣𝗗𝗙 #internalmedicine#smallanimals#pets#dogs#cats#veterinarymedicine#dvm https://t.me/vets_hub

VET's HUB ®

@vets_hub · Post #30255 · 07.12.2025 г., 03:32

NEWS 🔻𝗪𝗲𝗶𝗴𝗵𝘁 𝗹𝗼𝘀𝘀 𝗱𝗿𝘂𝗴𝘀 𝗳𝗼𝗿 𝗰𝗮𝘁𝘀? 𝗖𝗼𝗺𝗽𝗮𝗻𝘆 𝗹𝗮𝘂𝗻𝗰𝗵𝗲𝘀 𝗰𝗹𝗶𝗻𝗶𝗰𝗮𝗹 𝘁𝗿𝗶𝗮𝗹 𝗼𝗳 𝗚𝗟𝗣-𝟭 𝗶𝗺𝗽𝗹𝗮𝗻𝘁𝘀 𝗶𝗻 𝗰𝗮𝘁𝘀 #Okava_Pharmaceuticals, a San Francisco based company, plans to introduce on Tuesday a new #GLP_1 clinical weight loss study for cats. #MEOW_1, as the study is called, will look to use #OKV_119, a miniature implant, in cats which will deliver the GLP-1, continuously for up to six months. According to #Okava, MEOW-1 is the first-ever weight loss trial using this approach on household pets. Klotsman said the goal would be to file for #FDA approval for the product between 2027 and 2028, and the target is for the product to cost owners an out-of-pocket payment of around $100 per month. Read the full story 👇 https://abcnews.go.com/GMA/Wellness/weight-loss-drugs-cats-company-launches-clinical-trial/story?id=128054236 #feline#cats#pets#petobesity#petcare#okavapharmaceuticals#sanfrancisco#vets#petowners#veterinarians#dvm