使用
-c(command) 参数(假设您的文件名为
foo.py):
$ python -c 'import foo; print foo.hello()'
或者,如果您不关心名称空间污染,请执行以下 *** 作:
$ python -c 'from foo import *; print hello()'
和中间立场:
$ python -c 'from foo import hello; print hello()'
欢迎分享,转载请注明来源:内存溢出
使用
-c(command) 参数(假设您的文件名为
foo.py):
$ python -c 'import foo; print foo.hello()'
或者,如果您不关心名称空间污染,请执行以下 *** 作:
$ python -c 'from foo import *; print hello()'
和中间立场:
$ python -c 'from foo import hello; print hello()'
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)