given_string = "I moved to Paris 75011, it's closer to my workplace."
zip_code_pattern = r"\d{5}"
re.findall(zip_code_pattern, given_string)