Python - Hello World Program
Python - Hello World Program
Table of Contents
Initially the best practice is, using notepad to write python program.
print("Hello World")
Run py demo.py
Output
Hello World
print("Hello World"),
o print() is a predefined function in python.
o The purpose of print() is to display the output.
o "Hello World" it is a string in python
o We will learn more about function and string in upcoming
chapters