Open In App

Python | sympy.is_composite method

Last Updated : 13 May, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of sympy.is_composite method, we can check whether element is composite or not this method will return the boolean value i.e True or False.
Syntax : sympy.is_composite Return : Return True if composite else False.
Example #1 : In this example we can see that by using sympy.is_composite method, we are able to check the composite value and it will return a boolean value. Python3 1=1
# import sympy
from sympy import *

# Use sympy.is_composite method
gfg = simplify(6).is_composite
  
print(gfg)
Output :
True
Example #2 : Python3 1=1
# import sympy
from sympy import *

# Use sympy.is_composite method
gfg = simplify(3).is_composite
  
print(gfg)
Output :
False

Next Article
Article Tags :
Practice Tags :

Similar Reads