@NEASingapore · Post #756 · 06.02.2024 г., 01:01
Embrace the Lunar New Year with fresh air and festive cheer! Visit go.gov.sg/smoking-prohibition for the list of places where smoking is prohibited. #LunarNewYear2024
Hashtags
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
Пребарај: #lunarnewyear2024
@NEASingapore · Post #756 · 06.02.2024 г., 01:01
Embrace the Lunar New Year with fresh air and festive cheer! Visit go.gov.sg/smoking-prohibition for the list of places where smoking is prohibited. #LunarNewYear2024
Hashtags
@NEASingapore · Post #758 · 08.02.2024 г., 01:01
No spring cleaning is complete until you clear away all stagnant water. Let’s bring in good health and fortune, not mosquitoes. 🚫🦟 Check out more dengue prevention tips at go.gov.sg/dengue-checklist #BLOCKDengue#LunarNewYear2024
Hashtags
@NEASingapore · Post #767 · 19.02.2024 г., 09:31
Litter can become potential mosquito breeding habitats. Let’s #KeepSGClean and mozzie-free by binning our litter properly! If a bin is full, hold on to your litter until you find a bin that you can use! #LunarNewYear2024
Hashtags
@NEASingapore · Post #766 · 18.02.2024 г., 01:02
Better health, better wealth. Litter can become a breeding ground for germs and disease vectors. Let’s continue to bin our litter responsibly to #KeepSGClean. #LunarNewYear2024
Hashtags
@NEASingapore · Post #765 · 17.02.2024 г., 01:02
List it, buy it, cook it right! A well-planned grocery list is your ticket to a waste-free reunion dinner this Lunar New Year. 🍲 #SayYEStoWasteLess#SustainableSG#TowardsZeroWaste#LunarNewYear2024
@NEASingapore · Post #764 · 16.02.2024 г., 01:01
#RecycleRight and start the new year right! Don’t forget to empty and rinse drink bottles and cans before recycling. Check out more recycling tips and FAQs at www.nea.gov.sg/3R #SustainableSG#TowardsZeroWaste#LunarNewYear2024
@NEASingapore · Post #762 · 12.02.2024 г., 01:02
From fried rice to stir-fried noodles, there are many yummy dishes that can be made from leftovers! Get creative in the kitchen, and turn your leftovers into tomorrow's feast. #SayYEStoWasteLess#SustainableSG#TowardsZeroWaste#LunarNewYear2024
@NEASingapore · Post #761 · 11.02.2024 г., 01:02
🍱✨ Let’s make the most of every bite! Enjoy your festive favourites again, by packing up leftovers and storing them properly. #SayYEStoWasteLess#SustainableSG#TowardsZeroWaste#LunarNewYear2024
@NEASingapore · Post #757 · 07.02.2024 г., 01:02
Make recycling a part of your family’s routine! Simply set up your recycling bin next to your waste bin, to encourage everyone at home to #RecycleRight. More recycling tips and FAQs at www.nea.gov.sg/3R #SustainableSG#TowardsZeroWaste#LunarNewYear2024
@NEASingapore · Post #754 · 04.02.2024 г., 01:01
As we approach the Year of the Dragon, let’s breathe new life into our old tech! Recycle your e-waste to recover precious materials that can be used to make new products. More info at go.gov.sg/e-waste #RecycleRight#SustainableSG#TowardsZeroWaste#LunarNewYear2024
@NEASingapore · Post #750 · 01.02.2024 г., 01:05
Are the expiration dates on your condiments and other canned & bottled goods looming? Check your pantry and use up your goods before they expire. Let’s have a sustainable celebration this Lunar New Year! #SayYEStoWasteLess#SustainableSG#TowardsZeroWaste#LunarNewYear2024
@NEASingapore · Post #753 · 03.02.2024 г., 01:02
Remember to bring your reusable bags when you’re heading out to buy New Year goodies. This way, you’ll save money while saving the environment. Cheers to a clean, green and prosperous new year. 🧧 #BYOB#SustainableSG#TowardsZeroWaste#LunarNewYear2024