摘要:
!/usr/bin/env python coding: utf 8 import click @click.command() @click.option(' count', default=1, help='Number of greetings.') @click.option(' name' 阅读全文
摘要:
python中,每个py文件被称之为模块,每个具有__init__.py文件的目录被称为包。只要模块或者包所在的目录在sys.path中,就可以使用import 模块或import 包来使用。 如果想使用非当前模块中的代码,需要使用Import,这个大家都知道。 如果你要使用的模块(py文件)和当前 阅读全文