Answers for "string of text to lowercase 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
3

python string to lower

str = 'heLLo WorLD'
print(str.lower())
# hello world
Posted by: Guest on October-26-2020

Code answers related to "string of text to lowercase python"

Python Answers by Framework

Browse Popular Code Answers by Language