Anders and Briegel in Python
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

rightphase.py 204B

1234567891011
  1. NAMES = [" ", "i", "-", "-i"]
  2. class RightPhase(int):
  3. def __new__(cls, value):
  4. return super(TestClass, cls).__new__(cls, value % 4)
  5. a = TestClass(2)
  6. b = TestClass(5)
  7. print a, b
  8. print a+b+b