Anders and Briegel in Python
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
170B

  1. NAMES = [" ", "i", "-", "-i"]
  2. class RightPhase(int):
  3. def __init__(self, phase):
  4. self.ph = phase % 4
  5. def get_name(self):
  6. return NAMES[self.ph]