jesteś tutaj�
333
Trochę klasy
class CountFromBy:
def __init__(self, v: int=0, i: int=1) -> None:
self.val = v
self.incr = i
def increase(self) -> None:
self.val += self.incr
def __repr__(self) -> str:
return str(self.val)
To jest kod
zapisany
w pliku
countfromby.py.
Kod przykładów z rozdziału 8.
334
Rozdział 8.
Get Python Rusz głową! Wydanie II now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.