PYPROGLIB Telegram 6058
⚙️ Как оптимизировать и упростить код для подсчёта элементов в Python

А вы знаете, что этот 👇 код можно сократить до двух строк?
count = {}
for item in things:
if item not in count:
count[item] = 0
count[item] += 1


⭐️Для этого достаточно использовать модуль Counter
from collections import Counter

count = Counter(things)


Counter автоматически подсчитывает количество каждого элемента в things.

#советы
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥32👍3😁3



tgoop.com/pyproglib/6058
Create:
Last Update:

⚙️ Как оптимизировать и упростить код для подсчёта элементов в Python

А вы знаете, что этот 👇 код можно сократить до двух строк?

count = {}
for item in things:
if item not in count:
count[item] = 0
count[item] += 1


⭐️Для этого достаточно использовать модуль Counter
from collections import Counter

count = Counter(things)


Counter автоматически подсчитывает количество каждого элемента в things.

#советы

BY Библиотека питониста | Python, Django, Flask


Share with your friend now:
tgoop.com/pyproglib/6058

View MORE
Open in Telegram


Telegram News

Date: |

Avoid compound hashtags that consist of several words. If you have a hashtag like #marketingnewsinusa, split it into smaller hashtags: “#marketing, #news, #usa. On June 7, Perekopsky met with Brazilian President Jair Bolsonaro, an avid user of the platform. According to the firm's VP, the main subject of the meeting was "freedom of expression." Hui said the messages, which included urging the disruption of airport operations, were attempts to incite followers to make use of poisonous, corrosive or flammable substances to vandalize police vehicles, and also called on others to make weapons to harm police. To edit your name or bio, click the Menu icon and select “Manage Channel.” Choose quality over quantity. Remember that one high-quality post is better than five short publications of questionable value.
from us


Telegram Библиотека питониста | Python, Django, Flask
FROM American