Rohan Singh has Published 171 Articles

Download Anything to Google Drive using Google Colab

Rohan Singh

Rohan Singh

Updated on 10-Jul-2023 12:57:05

2K+ Views

Google Collab is a free online Platform provided by Google that provides CPU, GPU, and other infrastructure to run complex computation and data analysis. Google Collab provides a jupyter notebook environment to run Python code. We can download anything to google drive using google collab by mounting our google drive ... Read More

Download and install pip Latest Version

Rohan Singh

Rohan Singh

Updated on 10-Jul-2023 12:46:06

4K+ Views

Pip is a Python package manager that allows you to easily install, manage and uninstall Python packages. To download and install pip latest version you can do it by downloading the script from the official Python website or by using some commands in your local Command prompt. In this article, ... Read More

Download a file over HTTP in Python

Rohan Singh

Rohan Singh

Updated on 10-Jul-2023 12:43:58

362 Views

In Python, we download a file over HTTP using Python built-in libraries like urllib, request, and httplib. HTTP is a hypertext transfer protocol and is used to access data over the world wide web.HTTP requests are typically initiated by a client, such as a web browser, and are sent to ... Read More

Dora module in Python

Rohan Singh

Rohan Singh

Updated on 10-Jul-2023 12:41:07

300 Views

Dora module is a Python library that is used for data analysis and manipulation. The Dora module is built on top of the pandas library in Python and provides various functionalities for data analysis and manipulation. In this article, we will understand and see the features of the Dora Module ... Read More

Donut Chart using Matplotlib in Python

Rohan Singh

Rohan Singh

Updated on 10-Jul-2023 12:35:34

1K+ Views

A Donut chart is a circular chart that shows the relative representation of the data in a circular way. Donut and pie charts look similar but the donut chart has a hole in the center of the chart whereas the pie chart doesn’t. A donut chart can be created for ... Read More

Donut Chart in Pygal

Rohan Singh

Rohan Singh

Updated on 10-Jul-2023 12:21:55

76 Views

Pygal is a Python library that is used for creating graphs and charts for data visualization. The donut chart is a type of pie chart with a hole in the middle. Donut chat can be easily created using the Pygal library. In this article, we will visualize sample data using ... Read More

Docopt module in Python

Rohan Singh

Rohan Singh

Updated on 10-Jul-2023 11:50:46

605 Views

Docopt module in Python is used to create command-line interfaces. Similar to other command line arguments and options docopt allows us to define command line arguments and options and also generate help messages and usage strings for the Program. In this article, we will understand how the Docopt module is ... Read More

dllist class of llist module in Python

Rohan Singh

Rohan Singh

Updated on 10-Jul-2023 11:42:47

66 Views

The dllist is a class of the llist module in Python that is used to implement a doubly linked list that has the functionality for insertion, deletion, and traversal of elements. The dllist class provides methods for adding, removing, and iterating over the list in both directions. In this article, ... Read More

Difference Between Dataset.from_tensors and Dataset.from_tensor_slices

Rohan Singh

Rohan Singh

Updated on 06-Jul-2023 17:52:00

726 Views

Dataset.from_tensors and Dataset.from_tensor_slices are methods in the TensorFlow library that are used to create datasets. Dataset.from_tensor creates a dataset from a single tensor whereas Dataset.from_tensor_slices creates data set by slicing a tensor along the first dimension. In this article, we will understand the difference between the two methods and how ... Read More

Difference between DataClass vs NamedTuple vs Object in Python

Rohan Singh

Rohan Singh

Updated on 06-Jul-2023 17:43:43

904 Views

Dataclass, NamedTuple, and Object are used to create structured datatypes in Python. Though all three are used to create structured data they differ in their properties and implementation method. In this article, we will understand the difference between DataClass, NamedTuple, and Object in Python. Feature Object ... Read More

Advertisements