标签: python command-line command-line-interface command-line-arguments python-fire
我有这样的功能-
def f(arg) print(arg)
试图像这样用Python Fire传递参数-
f hello there
输出-
hello
答案 0 :(得分:1)
在将输入内容括在转义引号内之后,它起作用了-
f \"hello there\"
hello there