Como verificar se uma string está vazia de uma forma pythonica

Jinku Hu 19 outubro 2021
Como verificar se uma string está vazia de uma forma pythonica

Você tem métodos diferentes para verificar se uma string é uma string vazia em Python. Como,

>>> A = ""
>>> A == ""
True
>>> A is ""
True
>>> not A
True

O último método not A é uma forma Pythonica recomendada por Recomendações de Programação no PEP8. Por padrão, seqüências e coleções vazias são avaliadas como False em um contexto Boolean.

O not A é recomendado não só porque é Pythonic, mas também porque é o mais eficiente.

>>> timeit.timeit('A == ""', setup='A=""',number=10000000)
0.4620500060611903
>>> timeit.timeit('A is ""', setup='A=""',number=10000000)
0.36170379760869764
>>> timeit.timeit('not A', setup='A=""',number=10000000)
0.3231199442780053
Autor: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn Facebook

Artigo relacionado - Python String