Is Python a Scripting Language?

python scripting language

Yes, you can use Python as a scripting language. Using Python you can write scripts to automate very simple tasks with just a few lines of code. At the same time considering Python just a scripting language is not accurate considering that you can use Python to create complex programs of any kind (web applications, … Read more

What does the chmod 755 command do?

chmod-755-command

The chmod command modifies the permissions of a file or directory on a Linux system. The three numbers after the chmod command represent the permissions assigned to user owner, group owner and others. The numbers 755 assign read-write-execute permissions to the user ower and read-execute permissions to group owner and others. In this article I … Read more