About 157,000 results
Open links in new tab
  1. How can I get terminal output in python? - Stack Overflow

    Dec 10, 2010 · I can execute a terminal command using os.system() but I want to capture the output of this command. How can I do this?

  2. python - How to output to the console and file? - Stack Overflow

    Jan 4, 2019 · I'm trying to find out a way in python to redirect the script execution log to a file as well as stdout in a pythonic way. Is there any easy way of achieving this?

  3. Get current console output in python - Stack Overflow

    Jul 15, 2015 · I want to get the current console output of my program in python. There are a lot of solutions to get the console output when running an external program, however, I couldn't find any solution for getting the console output of the current program.

  4. How do I write output in same place on the console?

    On PyCharm Debugger console, \r needs to come before the text. Otherwise, the text may not appear at all, or appear inconsistently. I added the version that works for me as an edit, because I couldn't write multi-line code in this answer.

  5. python - Running shell command and capturing the output

    The check_output function works in all officially maintained versions of Python. But for more recent versions, a more flexible approach is available. Modern versions of Python (3.5 or higher): run If you're using Python 3.5+, and do not need backwards compatibility, the new run function is recommended by the official documentation for most tasks.

  6. Dynamic terminal printing with python - Stack Overflow

    Jan 23, 2010 · Certain applications like hellanzb have a way of printing to the terminal with the appearance of dynamically refreshing data, kind of like top(). Whats the best method in python for doing this? I...

  7. How to keep a Python script output window open?

    Jun 16, 2009 · I have just started with Python. When I execute a python script file on Windows, the output window appears but instantaneously goes away. I need it to stay there so I can analyze my output. How can I

  8. python - How do I print colored text to the terminal? - Stack …

    Apr 25, 2019 · @Jonathan, This is truly an awesome library! The ability to cross platform color Python output is really really nice and useful. I am providing tools for a library that colors its own console. I can redirect the output of that console to the terminal and colorize the output. Now I can even one up the library and let the user select colors.

  9. python - Formatting console Output - Stack Overflow

    Jun 28, 2012 · I'm having trouble making python print out texts properly aligned. I have tried everything I knew, but still the same result and it's very annoying!. Here is what I'm getting in the console He...

  10. How to suppress console output in Python? - Stack Overflow

    Jan 24, 2010 · To complete charles's answer, there are two context managers built in to python, redirect_stdout and redirect_stderr which you can use to redirect and or suppress a commands output to a file or StringIO variable.

Refresh