print()

Built-in FunctionPython 2.0+Beginner

Outputs text or values to the console

Quick Info

Documentation
Official Docs
Python Version
2.0+

Learn by Difficulty

Quick Example

python
print("Hello, World!")
print("Name:", "Python", "Version:", 3)
print(42)
print(True)

print() is a built-in function that outputs text or values to the console.

Try in Playground

Tags

builtinfunctioncoreiooutputdebugging

Related Items