Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 462 Bytes

notes.md

File metadata and controls

25 lines (18 loc) · 462 Bytes

Day 4 - Our first program

How to run python script

  • Save the file as filename.py (py is the extension for python files)
  • Using cmd go to the path where the script is and run the below code
python filename.py

or

python3 filename.py

First code

print('Hello World!')

References