1.Write a program to check whether a given Gmail ID is valid or not. Python def verify_Gmail(Gmail): i=0 while i="a" and current="A" and current="0" and current output 2. Write a program to check whether a given pincode is valid or not. A valid pincode must contain exactly 6 digits. Python pincode = int(input("Enter a pincode: ")) count = 0 temp = pincode while temp > 0: temp = temp // 10 c

Programs for Pincode, Gmail, and Mobile Number Validation
Vidya·Dev.to··1 min read
D
Continue reading on Dev.to
This article was sourced from Dev.to's RSS feed. Visit the original for the complete story.