Home >>Python Built-in Functions >Python print() Function
Python print() function is used to print or display any specified message to the screen or any other standard output device. This message can be a string or any other object.
Syntax:print(objects)
Parameter | Description |
---|---|
object(s) | This parameter defines any object and as many as you like. |
print("PHPTPOINT")
x = ("Abhi", "Mike", "Joker", "Batman", "HULK")
print(x)