Answers for "how to make a modulo in python"

0

python modulo

>>> 15 % 4
3

>>> 17 % 12
5

>>> 240 % 13
6

>>> 10 % 16
10
Posted by: Guest on January-20-2022
0

how to make a modulo in python

if i%2 == 0 :
  print("the Number is Odd")
else:
  print("the Number is even")
Posted by: Guest on April-19-2022

Python Answers by Framework

Browse Popular Code Answers by Language