
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 10476 Articles for Python

282 Views
As online shopping continues to gain popularity, personalized recommendations have gained significance in e-commerce. Finding exactly what a customer wants might be difficult due to the millions of goods that are accessible online. This is where personalized recommendations can help by giving users recommendations that are specific to their needs and habits. Taxonomy-based recommendation systems are one method for individualized suggestions. It is simpler to search for and retrieve information when objects or concepts are organized and classified according to a taxonomy, which is a hierarchical structure. In this article, we'll take a closer look at a taxonomy-based product recommendation ... Read More

6K+ Views
Google Colab, a well-known cloud-based Python programming setting, offers users skills to write and run code straight in a web browser. Even though Google Colab is typically utilised for the Analysis of data and machine learning projects, Flask apps can also be run there. We will examine the procedures needed to set up and operate a Flask application on Google Colab in this blog article. Setting up Google Colab Launch your web browser and navigate to https://colab.research.google.com/ in order to get started. Sign in employing your Google account or create one if required. Install Flask Python's Flask web ... Read More

2K+ Views
Disease prediction is a crucial application of machine learning that can help improve healthcare by enabling early diagnosis and intervention. Machine learning algorithms can analyse patient data to identify patterns and predict the likelihood of a disease or condition. In this article, we will explore how disease prediction using machine learning works and some examples of its applications. Disease prediction using machine learning Disease prediction using machine learning involves the following steps − Data collection − The first step is to collect patient data, including medical history, symptoms, and diagnostic test results. This data is then compiled into a ... Read More

7K+ Views
Pandas is a popular data analysis and manipulation library in Python. It offers powerful tools for reading, processing, and analyzing data, including the ability to store data in a DataFrame, which is a two-dimensional labeled data structure. One of the advantages of using Pandas is the ability to display DataFrame data in a table format, making it easy to visualize and understand the data. In this article, we will explore various ways to display a Pandas DataFrame in a table style. When working with DataFrames, it's often useful to display them in a table format. In this article, we will ... Read More

2K+ Views
Pandas is a powerful data analysis library that offers a wide range of functions to work with structured data. One of the most popular ways to represent data is through a heatmap, which allows you to visualize data in a tabular format with colours representing the values. In this article, we will explore how to display a Pandas DataFrame in a heatmap style using the Seaborn library. In data analysis and visualization, a heatmap is a popular tool used to display the relationship between variables in a tabular dataset. Heatmaps represent data as a grid of coloured squares, with each ... Read More

14K+ Views
Scientific notation is a standard way of representing numbers in the scientific and mathematical fields. However, in some cases, it may be more convenient to display these numbers in the traditional decimal format, also known as a floating-point format. Python provides a variety of ways to convert scientific notation to a float format. Scientific notation as float in Python One way to display scientific notation as a float in Python is by using the float() function. The float() function takes a string as input and returns a floating-point number. To convert a number in scientific notation to a float ... Read More

699 Views
In this article, we will explore how to display a NumPy array in Fortran order. By default, NumPy arrays are stored in row-major order (C-order), which means that the elements of the array are stored in consecutive memory locations row-wise. However, sometimes it is necessary to store and display arrays in column-major order (Fortran-order), especially in scientific computing applications. In NumPy, an array can be created in Fortran order using the order parameter of the np.array() function. Fortran order is also known as column-major order, which means that the elements of the array are stored column by column in ... Read More

2K+ Views
Displaying images on a terminal window can be a useful and fun feature to add to your Python programs. It can be used to create ASCII art, display diagrams or charts, or simply show images in a terminal-based interface. In this article, we'll explore how to display images on a terminal using Python. First, let's understand the basic concept of displaying images on a terminal. A terminal window is essentially a text-based interface that displays characters on the screen. Therefore, to display an image, we need to convert it into characters that can be displayed on a terminal. Types of ... Read More

441 Views
Pandas is a powerful Python library for data manipulation and analysis. One of the key features of Pandas is its ability to handle date and time data effectively. In this article, we will show you how to use Pandas to display all the Sundays of a given year. In this article, we will explore how to use Pandas, a popular data manipulation library in Python, to display all the Sundays of a given year. We will go through the step-by-step process to extract the Sundays of a year and display them in a readable format. Prerequisites Before we start, make ... Read More

235 Views
NumPy is a powerful library in Python for scientific computing, particularly for dealing with arrays and matrices. One of the lesser-known features of NumPy is its ability to generate arrays of dates. In this article, we will explore how to use NumPy to display all the dates for a particular month. Installation Before we start, let's make sure that NumPy is installed on our system. You can install it using pip by running the following command in your terminal or command prompt − pip install numpy Now that we have NumPy installed, let's start by importing it − import ... Read More