Validating phone number in Python - HackerRank Solution

Validating phone number in Python - HackerRank Solution
Validating phone number in Python - HackerRank Solution


Problem :


Let's dive into the interesting topic of regular expressions! You are given some input, and you are required to check whether they are valid mobile numbers.
A valid mobile number is a ten digit number starting with a 7, 8 or 9.

Concept :
A valid mobile number is a ten digit number starting with a 7, 8 or 9.
Regular expressions are a key concept in any programming language. A quick explanation with Python examples is available here. You could also go through the link below to read more about regular expressions in Python.
https://developers.google.com/edu/python/regular-expressions



Input Format :

The first line contains an integer N, the number of inputs.
N lines follow, each containing some string.

Constraints :

  • 1 <= N <= 10
  • 2 <= len(number) <= 15

Output Format :

For every string listed, print "YES" if it is a valid mobile number and "NO" if it is not on separate lines. Do not print the quotes.



Sample Input :

2
9587456281
1252478965

Sample Output :

YES
NO



Solution :


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
# Validating phone number in Python - Hacker Rank Solution
# Python 3
# Enter your code here. Read input from STDIN. Print output to STDOUT
# Validating phone number in Python - Hacker Rank Solution START
import re

N = int(input())

for i in range(N):
    number = input()
    if(len(number)==10 and number.isdigit()):
        output = re.findall(r"^[789]\d{9}$",number)
        if(len(output)==1):
            print("YES")
        else:
            print("NO")
    else:
        print("NO")
# Validating phone number in Python - Hacker Rank Solution END    





Disclaimer :-
the above hole problem statement is given by hackerrank.com but the solution is generated by the codeworld19 authority if any of the query regarding this post or website fill the following contact form thank you.

Next Post Previous Post
1 Comments
  • Anonymous
    Anonymous Sunday, December 10, 2023

    I think pattern ^[789] is enough to check

Add Comment
comment url