Answers for "modulo python"

1

lcm python

# Python program to find the L.C.M. of two input number

# This function computes GCD 
def compute_gcd(x, y):

   while(y):
       x, y = y, x % y
   return x

# This function computes LCM
def compute_lcm(x, y):
   lcm = (x*y)//compute_gcd(x,y)
   return lcm

num1 = 54
num2 = 24 

print("The L.C.M. is", compute_lcm(num1, num2))
Posted by: Guest on December-25-2020
7

how to use modulo in python

remainder = 31 % 10
Posted by: Guest on September-19-2020
2

what is modulus in python

# Modulus is the reminder of the 2 divisions, ex 25 % 2 = 1
#ie, 2*12 = 24 and the number is 25 so when we divide 25/2 the reminder is 1

print(25%2)
# Output = 1
#Hope you understood that, have a nice day :D
Posted by: Guest on October-05-2020
-1

modulo calculator python

7 % 2
Posted by: Guest on September-23-2020
-2

explain modulo python

Please insert a number: 5
Please insert the number you want to divide by the previous number: 3
Posted by: Guest on September-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language