Python Program to check a number is even or odd using single inheritance
In this program, you will learn how to check a number is even or odd using single inheritance in Python.
class Test(First):
if self.num % 2 == 0:
//statement
Example: How to check a number is even or odd using single inheritance in Python
class First:
def __init__(self):
self.num = int(input("Enter a number:"))
class Test(First):
def check(self):
if self.num % 2 == 0:
print("Number is even:", self.num)
else:
print("Number is odd:", self.num)
obj = Test()
obj.check()
Output:
Enter a number:10
Number is even: 10