Sunday, December 21, 2025
HomeLanguagesPython | sympy.antidivisors() method

Python | sympy.antidivisors() method

With the help of sympy.antidivisors() method, we can find the anti-divisors of a given number in sorted order by default.

Syntax: antidivisors(n, generator=False)

Parameter:
n – It denotes an integer.
generator – If generator is True an unordered generator object is returned, otherwise it returns a sorted list of anti-divisors. It is False by default.

Returns: Returns a list of anti-divisors of the given integer.

Example #1:




# import antidivisors() method from sympy
from sympy.ntheory.factor_ import antidivisors
  
n = 24
  
# Use antidivisors() method 
antidivisors_n = antidivisors(n) 
      
print("The anti-divisors of {} : {}".format(n, antidivisors_n))


Output:

The anti-divisors of 24 : [7, 16]

Example #2:




# import antidivisors() method from sympy
from sympy.ntheory.factor_ import antidivisors
  
n = 128
  
# Use antidivisors() method 
antidivisors_n = antidivisors(n) 
      
print("The anti-divisors of {} : {}".format(n, antidivisors_n))


Output:

The anti-divisors of 128 : [3, 5, 15, 17, 51, 85]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32455 POSTS0 COMMENTS
Milvus
111 POSTS0 COMMENTS
Nango Kala
6823 POSTS0 COMMENTS
Nicole Veronica
11958 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12038 POSTS0 COMMENTS
Shaida Kate Naidoo
6958 POSTS0 COMMENTS
Ted Musemwa
7203 POSTS0 COMMENTS
Thapelo Manthata
6911 POSTS0 COMMENTS
Umr Jansen
6890 POSTS0 COMMENTS