summaryrefslogtreecommitdiff
path: root/progs/a136.py
blob: a1f4adb076c37b359c20fb8a0dc81af3cd5928c1 (plain)
1
2
3
4
5
6
7
import re 
regex = '^[aeiouAEIOU][A-Za-z0-9_]*'
def check_str(string): 
	if(re.search(regex, string)): 
		return ("Valid") 
	else: 
		return ("Invalid")