Python Number Organizer
Project detail
I need a python program that will match a list of IDs of a number, for example:
Number ID
1. 1234 2e3
2. 4321 2e3
3. 1234 2e3
4. 3421 31e4
5. 4321 31e4
The numbers can be different but the ID should match, so after I put these numbers into the program the output should be:
Number ID
1. 1234 2e3
3. 1234 2e3
2. 4321 2e3
4. 3421 31e4
5. 4321 31e4