Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 446 Bytes

28 怎么定义私有方法?.md

File metadata and controls

15 lines (10 loc) · 446 Bytes

Python100

把Python知识点整理成100道习题,知识点来自两本书:Python基础教程(第3版)和流畅的Python,以后会定期加入更多的习题,大家帮忙点个赞哈,点赞越多,更新越快~

怎么定义私有方法?

在方式名称前加两个下斜杠 __

>>> class Person:
    def __name(self):
        print('私有方法')

用 from module import * 导入时不会导入私有方法。