Python圈软件测试Python基础

Python4--模块和包

2020-08-24  本文已影响0人  伊洛的小屋
1. __name____main__
# 伊洛Yiluo
# https://yiluotalk.com/
>>> dir(__builtins__)
['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning', 'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError', 'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False', 'FileExistsError', 'FileNotFoundError', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError', 'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'ModuleNotFoundError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError', 'RecursionError', 'ReferenceError', 'ResourceWarning', 'RuntimeError', 'RuntimeWarning', 'StopAsyncIteration', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'TimeoutError', 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'ZeroDivisionError', '__build_class__', '__debug__', '__doc__', '__import__', '__loader__', '__name__', '__package__', '__spec__', 'abs', 'all', 'any', 'ascii', 'bin', 'bool', 'breakpoint', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod', 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'exec', 'exit', 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'isinstance', 'issubclass', 'iter', 'len', 'license', 'list', 'locals', 'map', 'max', 'memoryview', 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', 'vars', 'zip']

2. 举个栗子
# 伊洛Yiluo
# https://yiluotalk.com/
(yiluo) ➜  Code touch build.py
(yiluo) ➜  Code vim build.py
#!/usr/bin/env python3
# 伊洛Yiluo

print('__name__究竟是什么? ')
print('该脚本的 __name__值是:{}'.format(__name__))
(yiluo) ➜  Code python build.py
__name__究竟是什么?
该脚本的 __name__值是:__main__
3.作为模块导入时
(yiluo) ➜  Code python3
Python 3.7.5 (default, Nov 29 2019, 14:32:46)
[Clang 9.0.0 (clang-900.0.39.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import build
__name__究竟是什么?
该脚本的 __name__值是:build
4.实际应用
#!/usr/bin/env python3
# 伊洛Yiluo

print('__name__究竟是什么? ')
print('该脚本的 __name__值是:{}'.format(__name__))


if __name__ == '__main__':
    print('我很倔强,我被导入的时候不会被打印!')
(yiluo) ➜  Code python build.py
__name__究竟是什么?
该脚本的 __name__值是:__main__
我很倔强,我被导入的时候不会被打印!
(yiluo) ➜  Code python3
Python 3.7.5 (default, Nov 29 2019, 14:32:46)
[Clang 9.0.0 (clang-900.0.39.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import build
__name__究竟是什么?
该脚本的 __name__值是:build
(yiluo) ➜  Code touch test.py
(yiluo) ➜  Code vim test.py
#!/usr/bin/env python3
# 伊洛Yiluo

import build
print('test脚本自己打印')
``
(yiluo) ➜  Code python test.py
__name__究竟是什么?
该脚本的 __name__值是:build
test脚本自己打印
5. 总结
6. 模块
7. 引入模块
import module
from module import *
8. 推荐引入顺序

标准库 > 第三方 > 自定义

9. 模块搜索路径
10. 模块与包

欢迎下方【戳一下】【点赞】
Author:伊洛Yiluo
愿你享受每一天,Just Enjoy !

上一篇下一篇

猜你喜欢

热点阅读