How to determine if a list is empty in Python

silencement
Release: 2019-07-08 10:27:32
Original
7589 people have browsed it

How to determine if a list is empty in Python

There is a need to determine whether the list is empty. The method is very simple, for example:

The empty list is equal to False,

then directly if a is Determine the command that needs to be executed when the list is not empty

a = []
if a:
 COMMAND
Copy after login

Similarly, len(a) = 0

When a is not empty, execute Command

a = []
 
if len(a):
 COMMAND
Copy after login

The above is the detailed content of How to determine if a list is empty in Python. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!