Python: Print String

By Xah Lee. Date: . Last updated: .

Simple Print

use print to print any value.

print( 3 )
print(3, "some", [1, 2])

Python: Percent Format String

print support arguments with percent format.

Python, String