We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if a or b in iterável
A construção if a or b in iterável soa como válida, mas muita gente não sabe sobre precedência de operadores
Se a e b forem hasheáveis, minha recomendação padrão é if {a, b}.intersection(iterável)
a
b
if {a, b}.intersection(iterável)
Algo que eu acho interessante de set.intersection e outros métodos é que pode ser qualquer iterável, não necessariamente um outro set ou frozenset
set.intersection
set
frozenset
The text was updated successfully, but these errors were encountered:
code 23 | commit e2bdbe4
Sorry, something went wrong.
No branches or pull requests
A construção
if a or b in iterável
soa como válida, mas muita gente não sabe sobre precedência de operadoresSe
a
eb
forem hasheáveis, minha recomendação padrão éif {a, b}.intersection(iterável)
Algo que eu acho interessante de
set.intersection
e outros métodos é que pode ser qualquer iterável, não necessariamente um outroset
oufrozenset
The text was updated successfully, but these errors were encountered: