2

Possible Duplicate:
Know any creative ways to interface Python with Tcl?

In python , I need to put some values as input into a TCL script, let it run, then use its outputs. how should I do that?

thanks

Community
  • 1
  • 1
Sonic
  • 85
  • 1
  • 10
  • 2
    Try the solution on this page it should do what you need. http://stackoverflow.com/questions/1004434/know-any-creative-ways-to-interface-python-with-tcl –  Jan 03 '13 at 21:42
  • thanks, I already saw that :) – Sonic Jan 04 '13 at 17:33

1 Answers1

3

You can do it using the subprocess Python module.

piokuc
  • 25,594
  • 11
  • 72
  • 102