Skip to content

Instantly share code, notes, and snippets.

@ecarreras
Created August 5, 2013 12:48
Show Gist options
  • Save ecarreras/6155668 to your computer and use it in GitHub Desktop.
Save ecarreras/6155668 to your computer and use it in GitHub Desktop.
def fix_vat(vat):
vat = vat.upper()
if vat and vat[0].isdigit():
vat = vat.zfill(9)
if not vat.startswith('ES'):
vat = 'ES%s' % vat
return vat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment