Write a Hello World Python Program in linux
$ vim zendanwar.py
#!/usr/bin/python
# Hello world python program
print “Hello python World!”
save the the file
Make the permission with following comman
$ chmod +x zendanwar.py
lastly run your file
$ zendanwar.py
output :
Hello python World!