来自:
[D]大侠请留步!!!关于 python 中调取tcl脚本中的函数传参问题
tcl脚本中的代码 proc test { a b c } { puts $a puts $b puts $c } 请问这种多参数的函数,怎么在python中调用 -------------------- Double行动: 原帖分数:40 帖子加分:40------解决方案-------------------------------------------------------- 貌似常见的就这写法,可以用string的format来简化下tcl_str = MyTcl.eval('test {0} {1} {2}'.format(a,b,c))