Python Program to check a number is even or odd using constructor


In this program, you will learn how to check a number is even or odd using a constructor in Python.


if self.num % 2 == 0:
   //statement

Example: How to check a number is even or odd using a constructor in Python

class Test:

    def __init__(self):
        self.num = int(input("Enter a number:"))
        if self.num % 2 == 0:
            print("Number is even:", self.num)
        else:
            print("Number is odd:", self.num)


obj = Test()

Output:

Enter a number:12
Number is even: 12