The amino acid is an organic compound (Biomolecule). An amino acid contains a carboxyl group (-COOH) and an amino group (-NH2). Amino Acids are the building blocks of protein. There are 22 standard amino acids. Amino Acids are different from each other because of the attached R- group to the alpha carbon. Amino Acids form […]
Month: July 2020
Data Types in Python
As we know Python is an object-oriented programming language so everything is considered as an object in Python, data types are actually classes and variables are instance (object) of these classes. Depending upon the properties, there are manly 7 basic data types: 1. Numbers: This datatype mainly has a numerical value. Integer Float Complex Output: […]
Introduction to biomolecules
Biomolecules are the biochemical molecule present in organisms that are essential in different biological processes. E.g., carbohydrate, fatty acids | cell division, replication Biomolecules include macromolecules such as lipids and carbohydrates, protein. Biomolecules are generally endogenous and exogenous. Endogenous: produced inside the organism. Exogenous: need to be taken such as vitamins. Most of the biomolecules […]
Python – program to calculate Compound Interest
In this post, we will write a program for how to calculate compound interest in python. First, let’s see What is compound Interest? Compound Interest is also called compounding interest which is calculated on the principal (initial principal) that is the addition of interest to the principal sum of a loan or deposit. The formula […]
Python – program to calculate simple interest
In this post, we will write a program for how to calculate simple interest in Python. First, let’s see What is Simple Interest? Simple interest is an interest calculated on the principal amount of a loan or the original contribution to a savings account. Simple Interest: I = (P * R * T) / 100 […]
Operators in Python
Operators are used to performing operations on values. Operators in Python are divided into the following categories : Arithmetic operators Assignment operators Logical operators Comparison operators Identity operators Membership operators Bitwise operators Arithmetic operators: These operators are used to perform mathematical operations (addition, subtraction, multiplication, division) on numerical values. “+”: This operator is used to […]
Gram staining
Gram staining is a method used to differentiate two groups of bacteria. Based on the cell wall. Developed by Hans Christian Gram in the 19th This method is used to identify gram +ve gram –ve After performing staining the Gram-positive bacterium stain violet and Gram-negative bacterium stain pink. This technique of staining can’t define bacteria, […]
Vaccine
A vaccine is a biological preparation that provides active acquired immunity for a disease. Typically contains an agent that resembles a disease-causing micro-organism. Often made from weakening or killed form of microbes or surface protein of microbe. The biological agent stimulates the immune system of our body, it recognizes the agent as a threat. Our […]
Python – program to print odd natural number upto n
In this post, we will see programs for how to print odd natural numbers up to n in python, provided n is positive. Odd Number : Any integer either positive or negative, which can not be divided exactly by 2 is an odd number. The numbers having the last digit is 1, 3, 5, 7 […]
CELL CYCLE
Every cell in our body produced by a pre-existing cell. process of cell formation from pre-existing cells is known as the cell cycle. Involves in many repetitions of cellular growth and reproduction, nuclear division. Almost all the living cells undergo a cell cycle (some exceptions like RBC). The cell cycle is separated into two phases: […]