Come controllare una stringa è vuota in modo pitonico

Jinku Hu 18 luglio 2021
Come controllare una stringa è vuota in modo pitonico

Avete diversi metodi per verificare se una stringa è una stringa vuota in Python. Come

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

L’ultimo metodo not A è un metodo pitonico raccomandato da Programming Recommendations in PEP8. Per impostazione predefinita, le sequenze e le collezioni vuote sono valutate come False in un contesto Boolean.

not A è raccomandato non solo perché è pitonico, ma anche perché è il più efficiente.

>>> 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
Autore: 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

Articolo correlato - Python String