def extract_isbn(data): isbns = find_isbns(data) if isbns: return isbns[0]
def extract_isbn(text): isbns = find_isbns(text) if isbns: return isbns[0]