pocketpy/tests/class.pk
blueloveTH 0891000a46 init
2022-11-06 12:16:57 +08:00

6 lines
151 B
Plaintext

class Complex:
def __init__(self, realpart, imagpart):
self.r = realpart
self.i = imagpart
x = Complex(3.0, -4.5)
assert x.r == 3.0