count = 0
for s in range(len(list_text)):
count += 1
x = re.search(r'(^([BCDFGHJKLMNPQRSTVWXZ][AEIOUY][BCDFGHJKLMNPQRSTVWXZ]?)+$|
^([AEIOUY][BCDFGHJKLMNPQRSTVWXZ][AEIOUY]?)+$)', list_text[s])is not None
if x == False:
return 0
elif x == True:
return count
counter is not running. very confused on this nonsense.(
Created at: 2015/07/11 18:46; Updated at: 2015/07/13 05:04