python - 在函数内部导入文件顶部

时间:2017-10-18 15:05:32

标签: python micropython

在项目micropython的Python代码中,有时import语句位于函数内部。

def main():
    import argparse
    cmd_parser = argparse.ArgumentParser(description='A tool to work with MicroPython .mpy files.')
    cmd_parser.add_argument('-d', '--dump', action='store_true',
        help='dump contents of files')
    cmd_parser.add_argument('-f', '--freeze', action='store_true',
        help='freeze files')
    ...

这是好习惯吗? 这有技术原因吗?

0 个答案:

没有答案