A string is said to be palindrome if the reverse of the string is the same as the string. For example, “naman” is a palindrome, but “ankit” is not a palindrome. Iterative Method: Run a loop from start to half of the length of the string. Check the first character to the last character of […]
Python – Sum of product of each element with each element after it in the List.
Given a list l of n integers. The task is to find the sum of the product of each element with each element after it in the list. In other words, we have to find the sum of the product of each l[i] with each l[j] such that j > i. Let’s see an example […]
Python program to find the roots of a quadratic equation
In this article, We will be going to see How to find the roots of a quadratic equation: A*x^2 + B*x + C. Example: Input: Quadratic Equation: 1X^2 + 5X + 2 Output: The Roots of a Quadratic Equations are: -0.4384 and -4.5616 for finding the roots we are using given below rules: D = […]
Python program to convert Centimeter into Inches
In this article, We will see How to Convert the Centimeter unit into Inches. Example: Input: Centimeter: 8 Output: Inches: 3.152 As we know that, 1 centimeter = 0.394 inches (approx) so we are using this information for writing this program. Now, let’s see the different ways to code this program: Code 1: Output: Centimeter […]
Python program to add two numbers
In this Article, We will see How to add two numbers in Python. Example: Input: number1 = 12, number2 = 13 Output: 25 Input: number1 = 10, number2 = 40 Output: 50 Now, let’s see the different ways to code: Code 1: Output: 25 Code 2: Output: 25 Code 3: Output: Enter 1st Number: 10 […]
Python program to calculate Median of a integer list
In this post, we will see the Python program for calculating the median of a given integer list. Examples: Given list: [10, 20, 30, 40, 0, 12, 100] Median of the given data is : 20 Given list: [10, 20, 30, 40, 0, 12, 100, 200] Median of the given data is : 25.0 Now, […]
Set up Python virtual environment using Anaconda
While working with python, we usually face the problem of setting up the virtual environment. In this blog I have covered the steps of creating virtual environment in python. Anaconda : Anaconda is an open source software that contains Jupyter, spyder idle etc that are used for large data processing, data analytics, heavy scientific computing. […]
How to count amino acid in a protein sequence using Python program
In this article, we are going to learn how python can be useful in finding amino acid in a given protein sequence. Before reading this article you must know about FASTA format and single letter code for the amino acid. (Click here FASTA format) Here, we will learn how can we find the total length […]
CARBOHYDRATES
Carbohydrates are the biomolecules consisting of aldehyde and ketone with multiple -OH groups. Carbohydrates are the main source of energy are made of 3 elements Carbon, Hydrogen, and Oxygen some of them also contain phosphorus or Sulphur. Classification of carbohydrates Carbohydrates are mainly classified as : Monosaccharides Oligosaccharides Polysaccharides The word saccharide derived from the […]
WATER and pH
WATER A water molecule is an irregular and irregular slightly skewed tetrahedron with an oxygen atom at its center. Water is a solvent for a wide range of organic molecules. Water molecules can dissociate into hydroxide ions(OH-) and protons (H+). Structure of water Water is a dipole molecule. Water molecules have inter and intra linked […]