python访问限制(私有变量前面用2个下划线)
2021/7/15 17:35:50
本文主要是介绍python访问限制(私有变量前面用2个下划线),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2021/7/15 17:18 # @Author : wutiande class Student(object): def __init__(self,name,score): self.__name = name self.__score = score def print_score(self): print(f"{self.__name}: {self.__score}") def get_name(self): return self.__name def get_score(self): return self.__score def set_score(self,score): if score < 0 or score>100: raise ValueError("不能小于0或大于100") self.__score = score def set_name(self,name): self.__name = name if __name__ == '__main__': s = Student("hablee",59) s.set_score(87) print(s.get_name(),s.get_score()) s.set_name("yuki") print(s.get_name(), s.get_score())
hablee 87 yuki 87
这篇关于python访问限制(私有变量前面用2个下划线)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-04Python编程基础:变量与类型
- 2024-11-04Python编程基础
- 2024-11-04Python编程基础入门指南
- 2024-11-02Python编程基础
- 2024-11-01Python 基础教程
- 2024-11-01用Python探索可解与不可解方程的问题
- 2024-11-01Python编程入门指南
- 2024-11-01Python编程基础知识
- 2024-11-01Python编程基础
- 2024-10-31Python基础入门:理解变量与数据类型