python如何調用含有多個參數的tcl函數

來自: http://www.myexception.cn/perl-python/375945.htmlhtml

[D]大俠請留步!!!關於 python 中調取tcl腳本中的函數傳參問題
tcl腳本中的代碼
proc test { a b c } {
puts $a
puts $b
puts $c
}

請問這種多參數的函數,怎麼在python中調用

--------------------
Double行動:
原帖分數:40
帖子加分:40

------解決方案--------------------------------------------------------
貌似常見的就這寫法,能夠用string的format來簡化下
python

Python code
tcl_str = MyTcl.eval('test {0} {1} {2}'.format(a,b,c))
相關文章
相關標籤/搜索