Concept Flow - String validation checks
Start with a string
Check isalpha()
Check isdigit()
Check isalnum()
Check isspace()
Check islower()
Check isupper()
End of checks
The program takes a string and checks different properties one by one, like if it has only letters, only digits, spaces, or a mix.