Answers for "python to lowercasee"

0

string lower python

# example string
string = "THIS SHOULD BE LOWERCASE!"
print(string.lower())

# string with numbers
# all alphabets whould be lowercase
string = "Th!s Sh0uLd B3 L0w3rCas3!"
print(string.lower())
Posted by: Guest on June-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language