from string import ascii_lowercase

def any_lowercase(s):
	for c in s:
		if c in ascii_lowercase:
			return True
	return False

print(any_lowercase("ASDdFHU"))