我有一个python函数
import commands
output=commands.getputput("ls -l")
print output
return output
我需要从我的 perl 脚本中的 python 函数获取这个返回值
my($command)=`$python_script_path`;
print $command;
我的问题是,通过在 python 中打印输出,我可以在屏幕上得到我的结果,但我实际上在 Perl 脚本中也需要这个输出,所以我宁愿返回它。我怎样才能实现它?另请注意,我不想使用内联 python。谢谢!!