Python Fire无法正确解析带空格的单个参数

时间:2018-12-07 14:16:42

标签: python command-line command-line-interface command-line-arguments python-fire

我有这样的功能-

def f(arg)
  print(arg)

试图像这样用Python Fire传递参数-

f hello there

输出-

hello

1 个答案:

答案 0 :(得分:1)

在将输入内容括在转义引号内之后,它起作用了-

f \"hello there\"

输出-

hello there