?
import string
def any_lowercase(s):
for i in range(0,len(s)): #check each character using a for loop
if(ord(s[i]) >= 97 and ord(s[i]) <= 122): #if the character at s[i] is between 'a' and 'z' in ascii, it must be a lowercase letter so return true
return True
return False
wg0z
Standard C function islower() is your friend.
Chris
Here's one way: http://ideone.com/ZPKLf5
any() is a function, you can't use it like you tried.