
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 26504 Articles for Server Side Programming

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

455 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

485 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

287 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

247 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

1K+ Views
Adding a border around a NumPy array can be a useful operation in various applications, such as image processing or data visualization. NumPy is a popular Python library used for numerical computing, which provides a powerful array object for handling multidimensional data. However, the process of adding a border to a NumPy array can be challenging for beginners. In this article, we will discuss how to add a border around a NumPy array using different techniques and functions provided by NumPy. We will also provide examples to demonstrate each method's implementation. How to add a border around a NumPy ... Read More

1K+ Views
When it comes to enhancing user experience, providing keyboard shortcuts or bindings for menu and toolbar items can greatly improve accessibility and efficiency and Tkinter stands as a popular choice for developing interactive applications in Python. In this article, we will explore the process of activating Tkinter menus and toolbars using keyboard shortcuts or bindings, empowering developers to create more intuitive and streamlined applications. How to activate Tkinter menu and toolbar with keyboard shortcut or binding? To enable keyboard shortcuts or bindings for activating the Tkinter menu and toolbar, you have the option to utilize the accelerator parameter when creating ... Read More