Answer to Question #64956 in Python for Racaku
How to check if list object has None element?
1
2017-02-03T06:15:24-0500
# -*- coding: utf-8 -*-
"""
How to check if list object has None element?
"""
v=[1, 2, 3]
print(any(item is None for item in v))
v=[1, None, 3]
print(any(item is None for item in v))
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
Python
Comments
Leave a comment