Skip to content

Instantly share code, notes, and snippets.

@Debanjan1234
Last active March 31, 2016 12:04
Show Gist options
  • Save Debanjan1234/efad7231e31bd9d30e2a7698e207ad45 to your computer and use it in GitHub Desktop.
Save Debanjan1234/efad7231e31bd9d30e2a7698e207ad45 to your computer and use it in GitHub Desktop.
Even Odd

number = input ('Enter Number Dear : ') if number > 0 : print("positive") elif number < 0 : print("negative") if number%2==0 : print("even") elif number%2!=0: print("Odd")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment