Posts by Aakanksha Thakar
Author Biographical Info: Not available
In this tutorial, we are going to see how to convert Mp4 to Mp3 files using Python. This task can be easily done using the moviepy library from Python. First, install the moviepy l.... Read More
In this tutorial, we are going to see how to get random n rows from a 2D array in Python. The 2D array is nothing but a matrix. This task can be done by using the Numpy library. We.... Read More
In this tutorial, we are going to see how to split an array into n parts of almost equal length in Python. One of the approaches to this is by using an in-built function from the N.... Read More
In this tutorial, we are going to see how to iterate through a list in reverse order in Python. Unlike arrays, lists can store elements of different data types. Other collective d.... Read More
In this tutorial, we are going to see how to merge two arrays without duplicate values in Python. To do this we will require the NumPy Python library. This library is used to work .... Read More
In this tutorial, we are going to see how to convert an Excel file to JSON format using Python. pandas is a Python library used to accomplish this task. The pandas library is used .... Read More
In this tutorial, we are going to see how to merge or join two videos using moviepy in Python. moviepy is a Python library used for video editing and processing. It can read and w.... Read More
In this tutorial, we will see how to find the first empty cell in a column of an excel sheet using openpyxl. openpyxl is a Python library used to work on Excel files. First, we mus.... Read More