My current code finds all cases where '+44' shows up in a website. I want this code to also produce all cases where '0131' occurs. Any help is appreciated, thank you. Code attached below.
phones = re.findall(r'\+44', page.decode())
phones.sort()
print (f'\n [+] {len(phones)} PHONE NUMBERS FOUND:\n')
for phone in phones:
print(phone)