DAY 147 __doc__/__name__/__file__

__doc__、__name__、__file__

各自的作用:

  __doc__:获取到注释内容

  __name__:获取到函数的名称

  __file__:获取到当前的文件路径

 

示例代码:

DAY 147 __doc__/__name__/__file__
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Author:lucky,time:2019-06-10

def my_python():
    """This is my python"""
    return ("From my python!")

print my_python()
print(my_python.__doc__)
print (my_python.__name__)
print __file__
DAY 147 __doc__/__name__/__file__

结果展示:

     DAY 147 __doc__/__name__/__file__

 

上一篇:植物大战僵尸资源文件提取 总结


下一篇:Programming Concepts: Compiled and Interpreted Languages