Anders and Briegel in Python
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

rightphase.py 204B

8 lat temu
8 lat temu
8 lat temu
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