gpt4 book ai didi

python - 从命令行运行函数

转载 作者:IT老高 更新时间:2023-10-28 12:07:45 26 4
gpt4 key购买 nike

我有这个代码:

def hello():
return 'Hi :)'

如何直接从命令行运行它?

最佳答案

使用 -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()'

关于python - 从命令行运行函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3987041/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com