print hello in python 3 code example
Example 1: how to print hello world in python
print('Hello World')
Example 2: python how to say hello world
my_string = "Hello, World!"
print(my_string)
print('Hello World')
my_string = "Hello, World!"
print(my_string)