print P in python code example
Example 1: how to print in python
print("hello world")
Example 2: how to print in python
# How to print in Python
print('Hello World!')
# or
print("Hello World")
# and with a space like this:
print ('Hello World')
print("hello world")
# How to print in Python
print('Hello World!')
# or
print("Hello World")
# and with a space like this:
print ('Hello World')