79183507

Date: 2024-11-13 05:26:41
Score: 2
Natty:
Report link

Check with type(X) is type

>>> type(Exception) is type
True

>>> type(3) is type
False

>>> class Dummy: pass
>>> type(Dummy) is type
True

Inspired by S.Lott's anwser.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jimmy Chen