Open In App

Python | sympy.is_odd() method

Last Updated : 08 Feb, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

In the sympy module, we can test whether a given number n is odd or not using sympy.is_odd() function.

Syntax:  sympy.is_odd(n)
Parameter:  n; number to be tested
Return:  bool value result 

Code #1: 

Python3




# Python program to check odd number
# using sympy.is_odd() method
 
# importing sympy module
from sympy import *
 
# calling is_odd function on different numbers
geek1 = simplify(30).is_odd
geek2 = simplify(13).is_odd
 
print(geek1)
print(geek2)


Output:

False
True

Code #2: 

Python3




# Python program to check odd number
# using sympy.is_odd() method
 
# importing sympy module
from sympy import *
 
# calling is_odd function on different numbers
geek1 = simplify(2).is_odd
geek2 = simplify(2.5).is_odd
 
 
print(geek1)
print(geek2)


Output:

False
False

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads