Previous: PyCharm IDE

Reference:

W3Schools.com

Print a message onto the screen:

print("Hello World")

Output:

Hello World

Print more than one object:

print("Hello World", "Hello Python")

Output:

Hello World Hello Python

Print many messages:

# Display three messages
print("Welcome to Python")
print("Python is fun")
print("Problem Driven")

Output: