
python地址 at: 2018-11-07
1.python学习地址
2.http://www.runoob.com/python3/
class Student(object):
def __init__(self, name, score):
self.name = name
self.score = score
def print_scor..