Answers for "cool things that can be built with python"

0

Cool Things To Do With Python

Make An Even And Odd Number Finder
def Even_Odd(Number):
    if Number%2==0:
        print("Even Number")
    else:
        print("Odd Number")

Even_Odd(#your number here)
Posted by: Guest on October-19-2021

Code answers related to "cool things that can be built with python"

Browse Popular Code Answers by Language