Python学习之类

class Person:

def __init__(self, name):

self.name = name

def sayHi(self):

print('Hello, my name is'+ self.name)


p = Person('Swaroop')

p.sayHi()

原文地址:https://www.cnblogs.com/wcLT/p/4303388.html