Piping stout to screen on win98
Fredrik Lundh
fredrik at pythonware.com
Fri May 4 03:02:38 EDT 2001
More information about the Python-list mailing list
Fri May 4 03:02:38 EDT 2001
- Previous message (by thread): Piping stout to screen on win98
- Next message (by thread): Piping stout to screen on win98
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Brian wrote: > Using popen I run a program from python. Is it possible to have the > stout from it presented on screen as the program runs? if you only want it to be printed to the screen, use os.system(command) instead of os.popen(command) if you want to read it and print it, just print it after you've read it... Cheers /F
- Previous message (by thread): Piping stout to screen on win98
- Next message (by thread): Piping stout to screen on win98
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list