Discuss / Python / 练习

练习

Topic source

bai渡者

#1 Created at ... [Delete] [Delete and Lock User]

-- coding: utf-8 --

class student(object): def init(self,name,sex,age): self.name=name self.sex=sex self.age=age

def print_info(self):
    print(self.name,self.sex,self.age)

zhangsan=student('张三','男',16) zhangsan.print_info()


  • 1

Reply