变量 #!-*-coding:utf-8-*- #__author__ = 'ecaoyng' # # 变量 #_xxx,单下划线开头的变量,标明是一个受保护(protected)的变量,原则上不允许直接访问,但外部类还是可以访问到这个变量. #这只是程序员之间的一个约定,用于警告说明这是一个私有变量,外部类不要去访问它. class Student: def __init__(self, name, age): self._name = name self.age=age stu=Studen…