Quick actions

cmd+k|ctrl+k

Navigation

Languages

Python 3 对象:5

Snippet info

Language

Python

Visibility

public

Author

fenghestudio

Created

2019-11-24T08:11:51Z

Updated

2019-11-24T08:11:51Z

class Foo(object):
    count = 0

f1 = Foo()
f2 = Foo()
f1.count = 1
print(f1.count, f2.count)
INFO