How to print hello world in Python
This simple example help you to print hello world
in python.
print('Hello ,world');
You can also print hello world by storing it inside a variable.
hello = 'Hello, World';
print(hello);
python-3.x
This simple example help you to print hello world
in python.
print('Hello ,world');
You can also print hello world by storing it inside a variable.
hello = 'Hello, World';
print(hello);
python-3.x