@Graeme Perrow , @Tendayi Mawushe:
About translating the English statement if x is None to the Python code if x is None:...
I did not understand why would you want to choose so, apart from having a look-and-feel of programming with English statements.
I would use instead if x == None: Python code, to check whether x is None.
Borrego's and Stephen's answers explain and elaborate on the purpose of is.
The fact that there's apparently no difference in these cases is not a good reason to rely on this quirk, for reasons such as implementations of Python that would not use caching of values would have broke your code, because this quirk depends on this detail.
So if you are intending x is None write x == None, as you would write y is 10 as y == 10.
If still unclear please read this.
Also there could be good reasons to write x is None, but I cannot imagine any scenario that would make this useful.
The point that if uses implicit boolean conversions, with the effects mentioned, is correct, and is proper to be aware about it.