Sometimes you may need to resize partitions in Ubuntu. Here are the steps to enlarge, shrink, delete, remove partition using Gparted.
How to Update Key in Dictionary in Python
Sometimes you may need to update key in dictionary. Here are three different ways to update dictionary key in python.
How to Search Item in List of Dictionaries in Python
Sometimes you may need to look for item in list of dictionaries in Python. Here are couple of ways to do this.
How to Remove Multiple Items from List in Python
Sometimes you may need to delete multiple items from Python List. Here are the different ways to remove multiple items from list in Python.
How to Flatten List of Dictionaries in Python
Sometimes you may need to flatten list of dictionaries in Python. Here are the different ways to do this.
How to Flatten List of Tuples in Python
Sometimes you may need to flatten list of tuples in Python. Here are the steps to do it using sum, itertools, map function.
How to Find & Delete Broken Symlinks in Linux
Sometimes you may need to find & delete broken symlinks in Linux. Here is how to remove broken symlinks in your system.
How to Remove Duplicates from List in Python
Sometimes you may need to remove duplicates from list in python. Here are the different ways to do this.
How to Get Key from Value in Python Dictionary
Sometimes you may need to get key from value in Python Dictionary. Here are the different ways to do this.
How to Flatten List of Lists in Python
Sometimes you may need to convert a 2D list into a 1D list, or flatten a list. Here is how to flatten list of lists in Python.