Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何从 python 脚本创建可执行文件,我也可以运行它。但例如,我不知道如何调用我的函数。我希望能够从启动可执行文件的同一命令提示符中执行此操作。
好的,我想我明白你想要做什么。假设你有一个脚本:
# module named test.py def bar(): print 'bar!' def foo(): print 'foo!'
并且您想从命令行调用bar或。foo
bar
foo
> python -c "from test import *; bar(); foo();"
这应该输出以下内容:
> bar! > foo!
该-c选项指定一个命令。请注意,这仅在您与脚本位于同一目录中时将其键入控制台时才有效。test
-c
test