标签:接下来 space 变量 font 权限 1.7 python对象 def 分数
1 #! /usr/bin/python3 2 #-*-coding:UTF-8-*- 3 #封装 4 5 class Student(object): 6 def __init__(self,name,score): 7 self.name=name 8 self.score=score 9 10 stu=Student(‘xiaoming‘,96) 11 def info(stu): 12 print(‘学生:%s;分数:%s‘%(stu.name,stu.score)) 13 info(stu)
D:\Pythonworkspace>python class_封装.py
学生:xiaoming;分数:96
1 #! /usr/bin/python3 2 #-*-coding:UTF-8-*- 3 #封装 4 5 class Student0(object): 6 def __init__(self,name,score): 7 self.name=name 8 self.score=score 9 10 def info(self): 11 print(‘学生:%s;分数:%s‘%(self.name,self.score))
1 stu=Student0(‘xiaoming‘,96)
1 D:\Pythonworkspace>python Class_封装.py 2 学生:xiaming;分数:96
标签:接下来 space 变量 font 权限 1.7 python对象 def 分数
原文地址:http://www.cnblogs.com/DLHe/p/8016972.html