W3School TIY Editor

  • W3School 在线教程
  • 改变方向
  • 暗黑模式
​x
 
class Person:
  def __init__(self, name, age):
    self.name = name
    self.age = age
​
p1 = Person("Bill", 63)
​
print(p1.name)
print(p1.age)