
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

322 Views
With the growth of the internet, developing web applications has become crucial. Python has grown to be a well-liked option for web development because to its simplicity and dependability. CherryPy is one of its frameworks that makes this approach simple. With the use of real-world examples, this article introduces CherryPy, its features, and how to utilise them to create web applications. What is CherryPy? Python's CherryPy is a simple, object-oriented web framework. It adheres to the tenet that "everything is an object, " making it a natural choice for developers accustomed to Python's object-oriented structure. It lets programmers to create ... Read More

2K+ Views
Python has a robust ecosystem of libraries built to fulfil the demands of diverse technical and scientific fields. Chempy, a programme created to address issues in chemical engineering, is one such library. This page gives you an overview of Chempy's capabilities and uses, along with useful examples. Chempy: Bringing Chemistry to Python Chempy is a Python package that seeks to offer an open-source computing environment for chemistry calculations. It has features for, among other things, thermodynamics, equilibrium computations, and chemical kinetics. Chempy could be a useful tool for modelling chemical reactions, determining the properties of substances, or running sophisticated simulations. ... Read More

454 Views
Python is known for its simplicity and readability, making it an excellent choice for beginners. With its rise in popularity, the demand for Python to run in the browser also grew. Brython, an acronym for Browser Python, is an innovative solution to this requirement. This article will explore what Brython is, its potential uses, and provide practical examples to demonstrate its features. Brython: Python for the Web A browser-based implementation of Python 3 is called Brython. Instead of JavaScript, it enables developers to create client-side scripts in Python. With Brython, you can take use of Python's structure and simplicity while ... Read More

478 Views
Python has made a name for itself as a flexible language in the wide field of web development. Its wide selection of frameworks makes it easier to create reliable web apps. Bottle, a micro-web framework made specifically for creating web APIs, is one such framework. The Bottle web framework will be introduced in this post along with several useful Python examples. Understanding Bottle: A Micro Web Framework Bottle is a Python web framework that is quick, light, and easy to use. It is ideal for creating straightforward personal applications, experimenting, and learning the fundamentals of developing online applications. Over the ... Read More

284 Views
Python provides a number of modules for data visualisation in response to the ever-increasing need. Bokeh stands out among them for its capacity to develop engaging and engaging stories. This article introduces Bokeh, details how to install it, lists its features, and delves into real-world applications to highlight its potent possibilities. Getting to Know Bokeh A Python package called Bokeh makes it easier to create scalable and interactive visualisations for use in web browsers. Because of its adaptability, Bokeh is an effective tool in a variety of industries, including engineering, finance, and data science. Installing Bokeh You can use the ... Read More

244 Views
The powerful bioinformatics programme Biopython has become a standard resource for experts in the area. You are given an introduction to Biopython in this article, which also covers its installation and provides examples that demonstrate its use. Even though we're going into Biopython, remember that it's only a small part of the larger Python ecosystem, which offers a wide range of modules and tools to meet different computational and scientific needs. A Glimpse of Biopython A Python module called Biopython was created to assist scientists in using Python for bioinformatics. It offers resources for working with biological data, such as ... Read More

2K+ Views
Python is probably one of the most used programming languages in the tech-driven world of today. The language is popular among developers all around the world because it is flexible, effective, and provides a wide range of third-party modules. PIP is a key element that facilitates Python package management. This post serves as a thorough tutorial for setting up PIP on Linux to manage Python packages. It is filled with useful examples to help you understand. Introduction to PIP The package management system PIP, which stands for "Pip Installs Packages, " is used to install and manage Python software packages. ... Read More

2K+ Views
When working with Plotly Express, a powerful Python library, it becomes essential to understand how to effectively incorporate a legend into single-trace scatterplots. This article serves as a comprehensive guide, explaining step-by-step how to create visually appealing scatterplots using Plotly Express. From loading data and data cleaning to data analysis and visualization, readers will learn how to showcase categorical groups with ease, enabling clear interpretation and understanding of the plotted data points. How to show legend in a single-trace scatterplot with Plotly express? To show a legend in a single-trace scatterplot using Plotly Express, we need to set the showlegend ... Read More

2K+ Views
Having the correct setup tools and packages installed is crucial for Python development on Linux. Setuptools is one such tool that plays a vital role in effortlessly building, distributing, and installing Python packages. This article will provide you with a detailed walkthrough of the installation process for Setuptools on Linux, ensuring that you possess all the necessary components to commence your Python application development smoothly. Prerequisites Before we proceed with the installation procedure for Python on Linux, it is important to ensure that you have fulfilled a few prerequisites. These conditions are essential for a seamless installation and utilization ... Read More

3K+ Views
Legends play a crucial role in conveying information about plotted elements which are mainly contained in the matplotlib which is a popular Python library used for data visualization but sometimes when dealing with complex visualizations, the default vertical spacing between legend entries may not be ideal. This article explores techniques to modify and customize the vertical spacing between legend entries in Matplotlib, allowing users to enhance the readability and aesthetic appeal of their plots. What is a legend in a Matpltlib graph? In a Matplotlib graph, a legend is a key or a guide that provides an explanation for the ... Read More