1

我知道如何从 python 脚本创建可执行文件,我也可以运行它。但例如,我不知道如何调用我的函数。我希望能够从启动可执行文件的同一命令提示符中执行此操作。

4

1 回答 1

0

好的,我我明白你想要做什么。假设你有一个脚本:

# module named test.py
def bar():
  print 'bar!'

def foo():
  print 'foo!'

并且您想从命令行调用bar或。foo

> python -c "from test import *; bar(); foo();"

这应该输出以下内容:

> bar!
> foo!

-c选项指定一个命令。请注意,这仅在您与脚本位于同一目录中时将其键入控制台时才有效。test

于 2012-08-22T11:09:18.303 回答