Computer Science, asked by nishokvs25, 2 months ago

i want to get someexamples of if statement in python
make it min.5 lines

Answers

Answered by varunraaj78
0

Answer:

x=int(input("Enter Number"))

if (x%2)==0:

print("Even number")

Explanation:

This is the program to find whether a number is even number or not

Similar questions