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 < len(array): array[idx] else: #handle this
try: array[idx] except IndexError: #handle this
如果不希望看见异常处理,也可以像下面这样:
if 'test' in ['demo','example']:
...
else:
...立即学习“PHP免费学习笔记(深入)”;
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号