How Find the Missing Number in Python

In this tutorial, we will program 'How to Find the Missing Number in Python'. We will learn how to find the missing number within an array list. The main goal here is to create a program that can actually find and locate the exact missing number. I will provide a sample program to demonstrate the actual coding of this tutorial.

This topic is very easy to understand; just follow the instructions I provide, and you can also do it yourself with ease. The program I will show you covers the basics of programming for finding the missing number. I will do my best to provide you with the easiest way for locating and displaying the missing number. So, let's start with the coding.

Getting Started:

First you will have to download & install the Python IDLE's, here's the link for the Integrated Development And Learning Environment for Python https://www.python.org/downloads/.

Creating Main Function

This is the main function of the application. The following code will display a simple GUI in terminal console that will display program. To do this, simply copy and paste these blocks of code into the IDLE text editor.
  1. def findMissingNumbers(n):
  2. numbers = set(n)
  3. length = len(n)
  4. output = []
  5. for i in range(1, n[-1]):
  6. if i not in numbers:
  7. output.append(i)
  8. return output
  9.  
  10. numbers = [1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 15, 16]
  11.  
  12. ret = False
  13.  
  14.  
  15. while True:
  16. print("\n================== Find the Missing Number ==================\n\n")
  17.  
  18. print("List of numbers: ", numbers)
  19.  
  20. print("\nMissing numbers: ", findMissingNumbers(numbers))
  21.  
  22. opt = input("\nDo you want to try again?(yes/no): ")
  23.  
  24. if opt.lower() == 'yes':
  25. ret=False
  26. elif opt.lower() == 'no':
  27. ret=True
  28. print("Exiting program....")
  29.  
  30. else:
  31. print("Please enter yes/no:")
  32. break
  33.  
  34. if ret == False:
  35. continue

This Python script defines a function findMissingNumbers that takes a list of numbers n and returns a list of missing numbers within a given range. It then initializes a list of numbers numbers, calls the findMissingNumbers function on it, and prints the list of missing numbers. Finally, it prompts the user if they want to try again or exit the program.

Output:

The How Find the Missing Number in Python source code that I provide can be download below. Please kindly click the download button.

There you have it we successfully created How Find the Missing Number in Python. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

More Tutorials for Python Language

Python Tutorials

Comments

Submitted byStella Mae (not verified)on Wed, 04/24/2024 - 20:38

Facebook code

Add new comment