You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
18 lines
182 B
Python
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)
|