Write a Python program to check whether lowercase letters exist in a string. May 17, 2023 by admin Write a Python program to check whether lowercase letters exist in a string. 1 2 str1 = 'A8238i823acdeOUEI' print(any(c.islower() for c in str1)) Final output