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


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


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

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

class Test:

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


num = int(input("Enter a number:"))
obj = Test(num)

Output:

Enter a number:14
Number is even: 14