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