Computer Science, asked by amal2915, 5 months ago

tejas is writing code for checking even or odd number. help him by completing the blank.
n=eval(input("enter a number"))
if= :
print("even")
else
print("odd")​

Answers

Answered by jai696
2

\large\mathsf\color{pink}{Solution\: using\: python\: 3}

n = int(input("enter a number: "))

print("even") if n % 2 == 0 else print("odd")

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions