How to Display Duplicate Number in a List in Python
In this tutorial, we will program 'How to Display Duplicate Numbers in a List in Python'. We will learn how to display all the possible duplicate numbers in a list. The objective is to automatically display the duplicates within a list. I will provide a sample program to demonstrate the actual coding process in this tutorial.
This topic is very easy to understand. Just follow the instructions I provide, and you can do it yourself with ease. The program I will show you covers the basics of programming to display duplicate numbers in a list. I will do my best to provide you with a simple method for displaying possible duplicates in a list. 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.- ret = False
- while True:
- print("\n================== Display Duplicate Number in a List ==================\n\n")
- list = [22, 22, 4, 5, 6, 4, 5, 7, 12, 12, 15, 14, 16, 16]
- print("My List: ", list)
- dup = []
- for a in list:
- n = list.count(a)
- if n > 1:
- if dup.count(a) == 0:
- dup.append(a)
- print("Duplicate number: ", dup)
- opt = input("\nDo you want to try again?(yes/no): ")
- if opt.lower() == 'yes':
- ret=False
- elif opt.lower() == 'no':
- ret=True
- print("Exiting program....")
- else:
- print("Please enter yes/no:")
- break
- if ret == False:
- continue
This script finds and displays duplicate numbers in a predefined list. It repeatedly prompts the user to rerun the process or exit the program. Each time, it prints the list and its duplicate numbers, allowing the user to choose whether to continue or exit based on their input.
Output:

The How to Display Duplicate Number in a List 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 to Display Duplicate Number in a List 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
Add new comment
- 129 views