How To Sort List In Python Programming Language?
Python provides lists structures in order to hold multiple elements in a single variable like an array. Generally same type of data is hold in this elements and we may want to sort them for...
Python provides lists structures in order to hold multiple elements in a single variable like an array. Generally same type of data is hold in this elements and we may want to sort them for...
While working with Linux we may need to get the size of the specific directory. In GUI there are file managers like Dolphin, Gnome, Nautilus etc. But what if we need to get the size...
Linux Bash provides a lot of useful features and commands. Pipe or | is one of them. Bash provides command line interface facility which mainly used to concatenate command output to another command. Concept In Linux...
One of the important job for System Administrators is finding and deleting large and unneeded files from Linux operating system. In this tutorial we will look how to find, sort and delete large and trash...
Python provides different data structures to store, modify, select, remove data. The most popular data structure is list. List is used to store sequential data in a single variable. Being sequential gives abilities like sort,...
Windows operating system provides command line tool named MS-DOS. This command line have different tools and capabilities for daily operations. We will look some simple steps about usage like navigation, list files and directories etc....
Linux have a lot of tools to make daily work of system administrators easy. uniq is one of them. Uniq is a small tool with limited capabilities. Syntax Syntax is same as other most of the...
Linux provides a lot of tools for text-related operations. wc is one of them. This tool is a little tool less than 10 options. In this tutorial, we will look at how to count bytes?...
Linux provides a lot of useful tools for system administrators. These tools gives the administrator a developer power so the administrator can easily change, modify, filter, sort the data. sort is an other little but powerful...
We have a dictionary which is read from a file. One field is string other field is number. String fields are unique and used as keys. Sorting by keys is easy but how can we...