标签: python
以下代码中的变量bar和foobar之间有什么区别?
bar
foobar
class Foo(): def __init__(self): self.foobar = 50 bar = 50
为什么使用一种方法而不是另一种?