Created
July 13, 2021 02:15
-
-
Save audhiaprilliant/b1b3e3968b91fabc3bff768149ce5dcc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Check length of ID | |
| def checkLength(ID): | |
| length = len(str(ID)) | |
| # check length | |
| status = False | |
| if length == 16: | |
| status = True | |
| return (status, length) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment