What is a good statement to describe the is operator as used in the following if statement: 
 
if x is not None: 
 # code here 
a) Checks identity, not equality 
b) Checks equality, not identity 
c) Checks both identity and equality 
d) Not a valid Python syntax