Browsing tag

Python language

Python exercise to calculate division of two floating point numbers

Python exercise to calculate division of two floating point numbers In this tutorial, we will discuss the concept of Python exercise to calculate division of two floating point numbers In this topic, we are going to learn how to divide two floating point numbers (One by another)in Python programming language What is division The division…

Python Program to compute Quotient and Remainder

Python Program to compute Quotient and Remainder of two number In this tutorial, we will discuss the concept of Python Program to compute Quotient and Remainder of two numbers when the one number divided by another In this topic, we are going to learn how to calculate quotient and remainder of two numbers in Python programming…

Divide of two integer without using ‘/’ operator in Python

Divide of two integer without using ‘/’ operator in Python In this tutorial, we will discuss the concept of Divide of two integer without using ‘/’ operator in Python In this topic, we are going to learn how to divide two numbers without using division operator in Python language What is division The division is…

Python program to divide two numbers using recursion

Python program to divide two numbers using recursion In this tutorial, we will discuss the concept of Python program to divide two numbers using recursion In this topic, we are going to learn how to divide two numbers using the recursive function in Python language What is division The division is a method of splitting…

Python code to divide two numbers using function

Python code to divide two numbers using function In this tutorial, we will discuss the concept of Python code to divide two numbers using function In this topic, we are going to learn how to divide two numbers using the Function in Python language What is division The division is a method of splitting a…

Python program for check whether given year is leap using function

Python program for check whether given year is leap using function In this article, we will discuss the concept of Python program for check whether given year is leap using function In this post, we are going to learn how to write a program to check  the given year is leap or not using function…

Python code to Add two integer using without + operator

Python code to Add two integer using without + operator In this article, we will discuss the concept of the Python code to Add two integer using without + operator In this post, we are going to learn how to  write a program to find the sum of two numbers using without plus operator in Python…

Python Example to sum of two integer using Bitwise operator

Python Example to sum of two integer using Bitwise operator In this article, we will discuss the concept of the Python Example to sum of two integers using Bitwise operator In this post, we are going to learn how to  write a program to find the sum of two numbers using Bitwise operator in Python programming…

Python Example to subtract two integer without using minus operator

Python Example to subtract two integer without using minus operator In this article, we will discuss the concept of the Python Example to subtract two integer without using minus operator In this post, we are going to learn how to  write a program to find the subtraction of two numbers with out using minus operator…