Top "Output" questions

The externally observable consequences of calling a program on some input

How to print colored text in Python?

How can I output colored text to the terminal in Python?

python terminal output ansi-colors
How to print out the contents of a vector?

I want to print out the contents of a vector in C++, here is what I have: #include <iostream&…

c++ vector output stdvector cout
vbscript output to console

What is the command or the quickest way to output results to console using vbscript?

windows vbscript console output
Output grep results to text file, need cleaner output

When using the Grep command to find a search string in a set of files, how do I dump the …

text grep output
How to get a specific output iterating a hash in Ruby?

I want to get a specific output iterating a Ruby Hash. This is the Hash I want to iterate over: …

ruby hash output
CMake output/build directory

I'm pretty new to CMake, and read a few tutorials on how to use it, and wrote some complicated 50 lines …

c++ build makefile cmake output
How to remove square brackets from list in Python?

LIST = ['Python','problem','whatever'] print(LIST) When I run this program I get [Python, problem, whatever] Is it possible to …

python list output
What is the difference between printf() and puts() in C?

I know you can print with printf() and puts(). I can also see that printf() allows you to interpolate variables …

c string output printf puts
Suppress console output in PowerShell

I have a call to GPG in the following way in a PowerShell script: $key = & 'gpg' --decrypt "secret.gpg" …

powershell output suppress-warnings verbosity
How can I see normal print output created during pytest run?

Sometimes I want to just insert some print statements in my code, and see what gets printed out when I …

python logging output pytest