我怎样才能将印地语翻译成英语?
例如"खाया"应转换为"khaya"
语言不是吧.
音译库中有什么用于音译的吗?
GO:有没有办法与子进程(shell脚本/ python脚本)进行通信,它正在等待stdin上的输入?
例如python脚本(子进程)
import sys
while True:
sys.stdout.write('%s\n'%eval(sys.stdin.readline()))
Run Code Online (Sandbox Code Playgroud)
在go程序中,我想创建这个python脚本的子进程,并在必要时重复地在其stdin上提供输入,并获取其输出.在Go程序的stdout上写或从文件读/写也可以.
这大致是我正在尝试的,但没有任何反应 -
c := exec.Command("python", "-u add.py")
si,_ := c.StdinPipe()
so,_ := c.StdoutPipe()
c.Start()
si.Write([]byte("2+2\n")
Run Code Online (Sandbox Code Playgroud) 我想从Go执行一个shell脚本.shell脚本采用标准输入并回显结果.
我想从GO 提供此输入并使用结果.
我在做的是:
cmd := exec.Command("python","add.py")
in, _ := cmd.StdinPipe()
Run Code Online (Sandbox Code Playgroud)
但我怎么读in?
鉴于vector<vector<double > > A_STL,我希望它被转换成arma::mat A.