这样写的话为什么输出会有None
def get_grade(self):
if self.__score >=90:
print "A."+"优秀"
elif self.__score>=60:
print "B."+"及格"
else :
print "C."+"不及格"
输出:A.优秀
None
B.及格
None
C.不及格
None