()
| 54 | |
| 55 | # Print the output from matches list |
| 56 | def PrintMatches(): |
| 57 | if len(matches) > 0: |
| 58 | print("Found matches: " + str(len(matches))) |
| 59 | for i in range(0, len(matches)): |
| 60 | print(matches[i]) |
| 61 | else: |
| 62 | print("***No Phone Number or Email Address found.***") |
| 63 | |
| 64 | |
| 65 | def main(): |