Home > Backend Development > Python Tutorial > Python 检查数组元素是否存在类似PHP isset()方法

Python 检查数组元素是否存在类似PHP isset()方法

WBOY
Release: 2016-06-16 08:41:10
Original
1533 people have browsed it

PHP中有isset方法来检查数组元素是否存在,在Python中无对应函数。

Python的编程理念是“包容错误”而不是“严格检查”。举例如下:

复制代码 代码如下:

Look before you leap (LBYL):

if idx array[idx]
else:
#handle this

Easier to ask forgiveness than permission (EAFP):


try:
array[idx]
except IndexError:
#handle this

所以在Python中一般可以通过异常来处理数组元素不存在的情况,而无须事先检查。

如果不希望看见异常处理,也可以像下面这样:

复制代码 代码如下:

if 'test' in ['demo','example']:

...

else:

...

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