First we create folder "Pankaj" to the E drive and python file "GPSTech.py" in that folder.
1) To create folder
mkdir e://"Pankaj"
2) To create file in it
touch e://Pankaj/"GPSTech.py"
3) To open file for write code in it
code e://Pankaj/"GPSTech.py"
Then we see file is open.
4) Write in file as follows
print ( " Good morning Pankaj " )
and press Ctrl + S to save file.
5) To run & get output of file in terminal.
python e://Pankaj/"GPSTech.py"
we see output of file will appear in terminal.