Computer Science Related Others Courses AvailableThe Best Codder.blogspot.com
Posts

Python Program to Check if a Number is Odd or Even

0 min read

 

Python Program to Check if a Number is Odd or Even

Odd and Even numbers:

If you divide a number by 2 and it gives a remainder of 0 then it is known as even number, otherwise an odd number.

Even number examples: 2, 4, 6, 8, 10, etc.

Odd number examples:1, 3, 5, 7, 9 etc.

See this example:

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

Output:

Python Condition And Loops3

You may like these posts

  •  Making a Python file: Python files are stored with the extension “.py”. Open a text editor and save a file with the name “hello.py”. Open it and write the following code…
  • Python Sets In Python, a Set is an unordered collection of data types that is iterable, mutable and has no duplicate elements. The order of elements in a set is unde…
  •  Python DictionaryDictionary in Python is a collection of keys values, used to store data values like a map, which, unlike other data types which hold only a single value…
  •  Global and Local Variables in PythonGlobal variables are those which are not defined inside any function and have a global scope whereas local variables are th…
  •  Python ArraysAn array is a collection of items stored at contiguous memory locations. The idea is to store multiple items of the same type together. This makes it easier to c…

Post a Comment

© 2025Python . The Best Codder All rights reserved. Distributed by