Create 1 - Lower-case Characters.py

This commit is contained in:
Lukas Baumann 2021-02-18 09:18:30 +01:00 committed by GitHub
parent dd51c45daf
commit ddf30ce83a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,4 @@
def lowerChar(char):
if 65 <= ord(char) <= 90:
return chr(ord(char)+32)
return char