我喜欢把class当做一个数据类型来使用。
我的方法是定义一个空的类,就像这样:
class data:
pass
然后,使用这个类,在里面存任何东西,例如:
man = data()
man.salary = 15000
man.name = "Man"
然后,读取它们,就像这样:
print(man.salary + man.name)
你有什么把类当做数据类型使用的好方法呢?
我喜欢把class当做一个数据类型来使用。
我的方法是定义一个空的类,就像这样:
class data:
pass
然后,使用这个类,在里面存任何东西,例如:
man = data()
man.salary = 15000
man.name = "Man"
然后,读取它们,就像这样:
print(man.salary + man.name)
你有什么把类当做数据类型使用的好方法呢?
For further actions, you may consider blocking this person and/or reporting abuse
Pedro Soares -
Kfir -
Theekshana Chamodhya -
Namubiru Rose -
Top comments (1)
I came across @oliverbennet is post "What's a Quickie Post?" too. So, I try it and write this post. Oh, my English is too bad!