nextobj for obj in objects if objid == 472887162 Noneexplian next
next() is a built-in Python function that returns the next item from an iterable. In this case, the iterable is a list of dictionaries called objects, and the function is looking for the first dictionary in the list where the value of the 'id' key is equal to 472887162.
The None argument is the default value that next() returns if it reaches the end of the iterable without finding a matching item. So, if no dictionary in the list has an 'id' key with the value 472887162, the function will return None
原文地址: https://www.cveoy.top/t/topic/fUQg 著作权归作者所有。请勿转载和采集!