@QuietWorld · Post #7006 · 30.11.2019 г., 10:15
“The wisdom of life consists in the elimination of non-essentials.” 🍃 Lin Yu Tang #wisdom#life#simplicity @quietworld🍃
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
Пребарај: #simplicity
@QuietWorld · Post #7006 · 30.11.2019 г., 10:15
“The wisdom of life consists in the elimination of non-essentials.” 🍃 Lin Yu Tang #wisdom#life#simplicity @quietworld🍃
Hashtags
@QuietWorld · Post #7238 · 29.03.2020 г., 08:12
In a world that is so busy and craves a lot of attention, I'm just here to remind myself of something that I agree with; “simplicity is the essence of happiness”. A Simple Yet Rewarding Life Life is simple. The wisdom of life consists in the elimination of non-essentials. Fewer possessions = more time to spend enjoying life; because we are not worrying about how to pay for our possessions. Sure it is exciting to buy & bring home lots of stuffs like the latest electronic gadget but after a while, the excitement wears off anyway 🤷🏻♀ & here's a reminder in case we forgot; our self-worth is not measured by the material thing we possess. In fact, possessions often end up weighing us down – with them, come responsibility, guilt and stress. For example; your expensive car eats large chunk of your salary from the monthly instalments, insurance, services and road tax as well as the gas and repairment fees (if any)! You must hold on to your job to maintain your car as if you are a slave to it. “The things that we own, end up owning us.” The feeling of guilt comes when you feel that you have overpaid for something or should not have bought it in the first place. For example; tread mill or any other exercise machine 🙍🏻♀ Needless to say, stress will come from paying high price for it & worrying about losing them; either by them being broken or stolen. What more is needed to say? Simpler life = doing much with less. 😊 #simplicity#life#minimalism#minimalist#happiness @quietworld🍃
@lunaeverly · Post #73 · 05.02.2026 г., 08:28
A mini picnic in the park. 🧺 Just being here and now is the best plan for the day. Мини-пикник в парке. 🧺 Просто быть здесь и сейчас — лучший план на день. #LunaEverly#Picnic#DayMindset#Park#Simplicity