value = 25 if value is 25: pass
value = 25 if value == 25: pass
Used when comparing an object to a literal, which is usually what you do not want to do, since you can compare to a different literal than what was expected altogether.