Table of Contents

Python - None (Null)

Example

var = None

if var is None:
            print('None')
            
if var is not None:
            print('Not None')