Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Exercise 7 . 3 - validate social security number Define a function to validate the basic social security number format without using regular expression. Social
Exercise validate social security number
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started