Q:

python lower

// turn to lower/upper
string = string.upper()
string = string.lower()

// check if all letter are lower or upper
string.islower()
string.isupper()
14
string.lower()
6
startString = "TeST StrIng"
lowerCaseString = startString.lower()
print(lowerCaseString)
# Output -> "test string"
1

New to Communities?

Join the community