Answer to Question #64956 in Python for Racaku

Question #64956
How to check if list object has None element?
1
Expert's answer
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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS