Answers for "how to check if number is even or odd without using condition python"

3

how to find if a value is even or odd in python

num = int(input("Enter a Number:"))
if num % 2 == 0:
  print(num , "is even")
else:
  print(num , "is odd")
Posted by: Guest on June-06-2021

Code answers related to "how to check if number is even or odd without using condition python"

Python Answers by Framework

Browse Popular Code Answers by Language