Files
TencentOS-tiny/components/language/micropython/tests/basics/class_store.py
2022-09-29 12:10:37 +08:00

18 lines
182 B
Python

# store to class vs instance
class C:
pass
c = C()
c.x = 1
print(c.x)
C.x = 2
C.y = 3
print(c.x, c.y)
print(C.x, C.y)
print(C().x, C().y)
c = C()
print(c.x)
c.x = 4
print(c.x)