Vérifiez la chaîne égale à l'expression régulière Python

import re
pattern = re.compile("^([A-Z][0-9]+)+$")
pattern.match(string)
Difficult Dormouse