Category Archives: Basic Programs in Python

Python Function Circle Area

Python Function Circle Area – Write a Python program to input radius of a circle. Calculate the area of the circle with the given radius. Source code for Python Program to find Area of Circle # Python Function Area of Circle # Define the function to find area of circle def area_of_circle(radius): if radius <… Read More »

 161 total views

Python Program Check Positive Number

Python Program Check Positive Number – Write a Python program to input a number and check whether the given number is positive, negative or zero. Use Python if-elif-else construct. Python Program Check Positive, Negative or Zero Number # Python program to check a number # for positive, negative or zero num = int(input(‘Enter a number:… Read More »

 115 total views

Python Square Root Program

Python Square Root Program – Write a Python Program To find Square root of a number. Three Python programs to find square root of a number using Python. Code of Python Square Root Programs Program 1:Use Exponentiation Operator Exponentiation Operator ** in Python is used to raise the first operand/number to power of second number.… Read More »

 201 total views,  2 views today

Python GCD Recursive Function

Python GCD Recursive Function – Write a Python Program to find GCD of two numbers by recursion. Python GCD Recursive Function Python Program GCD of Two Numbers # Write a Python Program to find GCD # of two numbers using Recursion # define a recursive GCD function def recursive_gcd(a,b): if(b==0): return a else: return recursive_gcd(b,a%b)… Read More »

 204 total views,  1 views today

Python Power Recursive Function

Python Power Recursive Function – Write a Python program that uses recursion concept to calculate a number N raised to the power P.   Python Recursive Function Power # Write a Recursive Function power_recursive(n,p) # to calculate n raised to power p. # define function def power(n, p): if p == 0: return 1 else:… Read More »

 211 total views,  1 views today

Python Recursive Function Add Numbers

Python Recursive Function Add Numbers – Write a Python Program to display sum of 1 to 10 numbers using recursion. Call this recursive function in main. Python Code – Program With Recursive Function Add Numbers # Write a recursive function to add numbers # from 1 to 10 recursively. Call it from # main function… Read More »

 183 total views

Python Random Numbers Generation

The process of Python Random Numbers Generation is very simple and easy to understand. Steps To Generate a Random Number in Python Just follow these steps: 1. Import random module 2. Use randint() method of random module to generate an integer number within a specific range. Example: Generate a Random Number Between 1 and 50… Read More »

 521 total views,  2 views today

Python Density of Cylinder Program

Python Density of Cylinder Program Write a program to input mass and volume of a cylinder and find the density of this cylinder using the formula d = m / v: Formulae of Density of Cylinder We will use the following formula for the calculation of density of the cylinder. Density = Mass / Volume… Read More »

 822 total views,  1 views today

Python KG to POUNDS and Vice Versa

Python Program to convert kilo grams into pounds and vice versa. Formula to convert kg to pounds and vice versa To convert pounds into kilograms, divide the number of pounds you have by 2.2046. Program statements kg to pounds and vice versa ”’ Python Program to convert kg to pounds and vice versa ”’ ”’… Read More »

 994 total views,  4 views today

Python Area of Triangle With Three Sides Formula

Python Area of Triangle With Three Sides Formula – This Python program will input the three sides of a triangle. It will use the following formula to calculate the area of the triangle. Heron’s Formula The area of a triangle can be calculated by using Heron’s formula if we only know the length of all… Read More »

 1,994 total views,  4 views today