Python의 미리 정의된 상수들은 해석과 대입 규칙이 다양하다.
Python에서는 미리 정의된 상수로 <code>True</code>, <code>False</code>, <code>None</code>, <code>__debug__</code>, <code>Ellipsis</code>, <code>NotImplemented</code>가 존재한다. 이 상수들은 각각의 이름 해석과 대입 규칙이 다르기 때문에 주의가 필요하다. 따라서 개발자는 이들 상수를 사용할 때 혼란을 피해야 한다.
Python's predefined constants have varying interpretation and assignment rules.
In Python, there are predefined constants including <code>True</code>, <code>False</code>, <code>None</code>, <code>__debug__</code>, <code>Ellipsis</code>, and <code>NotImplemented</code>. Each of these constants has different rules for name interpretation and assignment, which developers need to be cautious about. Understanding these variations is essential to avoid confusion when using them.