recent

>>> COBOL COMPILER  >>> Make your Computer Welcome You  >>> Windows KMS Activator Free Download + How to Use Windows KMS Activator Ultimate Edition ...   >>> Remove Shortcut Virus From Pen Drive & SD Card  >>> Download and Install Turbo C++or C Software  >>> ലാപ്‌ടോപ് വാങ്ങുമ്പോള്‍ ഈ 6 കാര്യങ്ങൾ ശ്രദ്ധിക്കരുത്!...   >>> How to Get Deleted Files Back from USB or Hard Drive  >>> How To Make Your Own Subtitles With Any Text Editor  >>> How To Clean your RAM using Notepad  >>> Clear Recent Documents Windows 7 & 8    undefined

Thursday, 1 October 2015

Python Program to Check if a Number is Odd or Even
# Python program to check if the input number is odd or even.
# A number is even if division by 2 give a remainder of 0.
# If remainder is 1, it is odd number.

num = int(input("Enter a number: "))
if (num % 2) == 0:
   print("{0} is Even".format(num))
else:
   print("{0} is Odd".format(num))

No comments :

Post a Comment