{"id":20406,"date":"2021-09-11T15:38:10","date_gmt":"2021-09-11T10:08:10","guid":{"rendered":"https:\/\/python-programs.com\/?p=20406"},"modified":"2021-11-22T18:36:21","modified_gmt":"2021-11-22T13:06:21","slug":"python-program-for-division-two-numbers-operator-without-using-division-operator","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-program-for-division-two-numbers-operator-without-using-division-operator\/","title":{"rendered":"Python Program For Division Two Numbers Operator Without Using Division(\/) Operator"},"content":{"rendered":"

In the previous article, we have discussed Python Program to Subtract Two Numbers Without Using Minus(-) Operator<\/a><\/p>\n

Given two numbers and the task is to find the division of given two numbers without using Division(\/)\u00a0 Operator in python.<\/p>\n

Examples:<\/strong><\/p>\n

Example1:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given First Number = 400\r\nGiven Second Number = 200<\/pre>\n

Output:<\/strong><\/p>\n

The Division of above given two numbers{ 400 \/ 200 } =2<\/pre>\n

Example2:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given First Number = 75\r\nGiven Second Number = 15<\/pre>\n

Output:<\/strong><\/p>\n

The Division of above given two numbers{ 75 \/ 15 } =5<\/pre>\n

Program For Division Two Numbers Operator Without Using Division(\/) Operator in Python<\/h2>\n

Below are the ways to find the division of given two numbers without using the division(\/) operator in python:<\/p>\n