Python 检查数组元素是否存在 类PHP isset()
程序员文章站
2022-03-28 21:03:15
...
PHP中有isset方法来检查数组元素是否存在,在Python中无对应函数。 Python的编程理念是“包容错误”而不是“严格检查”。举例如下: Look before you leap (LBYL): if idx len(array): array[idx]else: #handle this Easier to ask forgiveness than permiss
PHP中有isset方法来检查数组元素是否存在,在Python中无对应函数。
Python的编程理念是“包容错误”而不是“严格检查”。举例如下:
Look before you leap (LBYL):
if idx
Easier to ask forgiveness than permission (EAFP):try: array[idx] except IndexError: #handle this
所以在Python中一般可以通过异常来处理数组元素不存在的情况,而无须事先检查。如果不希望看见异常处理,也可以像下面这样:
if 'test' in ['demo','example']: ... else: ...
by iefreer
推荐阅读
-
Python 检查数组元素是否存在类似PHP isset()方法
-
php判断数组元素中是否存在某个字符串的方法
-
php判断数组元素中是否存在某个字符串的方法
-
Python 检查数组元素是否存在类似PHP isset()方法
-
PHP使用in_array函数检查数组中是否存在某个值
-
Golang 如何判断数组某个元素是否存在(isset)
-
php判断数组元素中是否存在某个字符串的教程
-
PHP array_key_exists检查键名或索引是否存在于数组中的实现方法,arraykeyexists_PHP教程
-
php判断数组元素中是否存在某个字符串的方法_PHP教程
-
浅谈PHP检查数组中是否存在某个值 in_array 函数,浅谈in_array_PHP教程