I got a function online to help me with my current project and it had semi colons on some of the lines. I was wondering why? Is it to break the function?
def containsAny(self, strings=[]):
alphabet = 'abcdefghijklmnopqrstuvwxyz0123456789'
for string in strings:
for char in string:
if char in alphabet: return 1;
return 0;
Function i Got online with little modification
for string in strings:
for char in string:
if char in alphabet: return 1;
Is this ^ saying
if char in alphabet:
retrun 1
break
Thanks for any effort to help.


any(char in alphabet for string in strings for char in string)– Eric Sep 8 '12 at 23:42anyreturns True if any element in its iterable is True. – Eric Sep 9 '12 at 9:01