假设 perl 代码是这样的......
open(STDOUT, ">$PName") || die "Can't redirect stdout";
$status = system("python Example.py $PName.txt");
(取自http://www.linuxquestions.org/questions/programming-9/perl-script-call-python-linux-551063/)
我必须在 python 中做什么才能将字符串传递给 perl 脚本?
我需要简单地返回字符串吗?或打印到控制台?或者是其他东西?