Create 2 - Exact Postage.py

This commit is contained in:
Lukas Baumann 2021-02-18 08:30:24 +01:00 committed by GitHub
parent bd6f74196d
commit 076c70e72e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
14/2 - Exact Postage.py Normal file
View File

@ -0,0 +1,12 @@
def postalValidate(S):
S = S.replace(" ", "")
if len(S) != 6:
return False
for i in range (6):
if i%2:
if not S[i].isdigit():
return False
else:
if not S[i].isalpha():
return False
return S.upper()