Every line of 'python if not null' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
9 def is_null(val): 10 if val in [None, 'none', 'None']: 11 return True 12 else: 13 return False