Python Hello World
Chapter:
Python
Last Updated:
14-09-2018 15:56:38 UTC
Program:
/* ............... START ............... */
# Python program to print hell world
print('Python Hello World')
/* ............... END ............... */
Output
Notes:
-
In Python we can use print function to write the text to the console. Eg : print('Python Hello World').
- Python programs you can run on console or use can use some IDE like Pycharm.
- Python file has the extension ".py". You can save the file using the same extension Eg : HellowWorld.py
- In linux use can use terminal to run the python program using the command "python3 HellowWorld.py"