Question: Exercise 7 . 3 - validate social security number ( Python ) Define a function to validate the basic social security number format without using
Exercise validate social security numberPython
Define a function to validate the basic social security number format without using regular expression.
Social security basic format is ddddddddd dights, hyphen, dights, hyphen, digits
Write test code to ask for a social security number
and print out whether it is in the right format.
Challenge: Rewrite the function using regular expression.
Sample output:
Enter a string for SSN:
Valid SSN
Enter a string for SSN:
Invalid SSN
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
