class Count: def __init__(self, count=0): self.count = count def increment(c, times): c.count += 1 print('c:', c.count) times += 1 print('t:', ...
確定! 回上一頁