Write a Python program to find the number of divisors of a given integer is even or odd.

saurabh belote - Sep 24 '21 - - Dev Community
def divisor(n):
  x = len([i for i in range(1,n+1) if not n % i])
  return x
print(divisor(15))
print(divisor(12))
print(divisor(9))
print(divisor(6))
print(divisor(3))
Enter fullscreen mode Exit fullscreen mode
. . . . . . . . . . . . . . . . . . .