我有这个代码:
def hello(): return 'Hi :)'
我如何从命令行直接从运行它?
直接从命令行运行 Python 函数
首先,将你的函数保存在 Python 脚本文件中,例如hello.py:
hello.py
# hello.py def hello(): return 'Hi :)' if __name__ == '__main__': print(hello()) ``
要从命令行运行此脚本,请导航至 director
python hello.py
这
Hi :)
if __name__ == '__main__':
hello()
print(hello())
如果你只想运行该函数而不修改脚本,你可以将其导入 Python 交互式 shell 或python -c从
python -c
例如:
python -c "from hello import hello; print(hello())" ``
这也将