csc-python-solutions/11/a/2 - Lower-case String.py
2021-02-18 09:21:27 +01:00

11 lines
214 B
Python

def lowerChar(char):
if 65 <= ord(char) <= 90:
return chr(ord(char)+32)
return char
def lowerString(string):
out = ""
for i in range(len(string)):
out += lowerChar(string[i])
return out