Answers for "how to print values if there is a lowercase letter in python"

5

how to check if a letter is lowercase in python

for c in s:
    if c.islower():
         print c
Posted by: Guest on May-27-2020
5

convert string to lowercase in python

str = 'HELLO'
print(str.lower())

#prints "hello"
Posted by: Guest on February-01-2021

Code answers related to "how to print values if there is a lowercase letter in python"

Python Answers by Framework

Browse Popular Code Answers by Language