amarao: (Default)
[personal profile] amarao

Проверка, что в командной строке есть аргумент, начинающийся с --ansible-inventory

if any([a.startswith("--ansible-inventory") for a in sys.argv]):
    ...

Date: 2022-06-18 03:45 pm (UTC)
yurikhan: (Default)
From: [personal profile] yurikhan

Материализация в список тут избыточна. А так — всегда так пишу.

Date: 2022-06-18 04:18 pm (UTC)
yurikhan: (Default)
From: [personal profile] yurikhan

О, не, не всегда.

Кроме задачи «проверить существование»:

if any(p(x) for x in xs):
    ...

иногда встречается задача «проверить существование и предъявить один пример»:

x0 = next((x for x in xs if p(x)), None)
if x0 is not None:
    ...

В особом случае, когда None — допустимый x, можно завести отдельный sentinel:

sentinel = object()
x0 = next((x for x in xs if p(x)), sentinel)
if x0 is not sentinel:
    ...

А также задача «проверить существование и предъявить все примеры».

xs0 = [x for x in xs if p(x)]
if xs0:
    ...

Date: 2022-06-18 07:39 pm (UTC)
juan_gandhi: (Default)
From: [personal profile] juan_gandhi

Нормально.

Profile

amarao: (Default)
amarao

May 2026

S M T W T F S
     12
3 4 567 89
101112 13141516
17181920 2122 23
242526 27 282930
31      

Most Popular Tags

Style Credit

Expand Cut Tags

No cut tags
Page generated May. 28th, 2026 09:44 am
Powered by Dreamwidth Studios