Python: Print

By Xah Lee. Date: . Last updated: .

Simple Print

use print to print any value.

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

python print

Python, String