小能豆

从命令行运行函数

python

我有这个代码:

def hello():
    return 'Hi :)'

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


阅读 29

收藏
2024-09-14

共1个答案

小能豆

直接从命令行运行 Python 函数

1.将 Python 代码保存在文件中

首先,将你的函数保存在 Python 脚本文件中,例如hello.py

# hello.py
def hello():
    return 'Hi :)'

if __name__ == '__main__':


print(hello())

``

2.从命令行运行脚本

要从命令行运行此脚本,请导航至 director

python hello.py

Hi :)

解释

  • if __name__ == '__main__':: 这hello()获取
  • print(hello())hello()功能

run

如果你只想运行该函数而不修改脚本,你可以将其导入 Python 交互式 shell 或python -c

例如:

python -c "from hello import hello; print(hello())"

``

这也将

Hi :)
2024-09-14