mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
6 lines
108 B
Python
6 lines
108 B
Python
|
def make_upper_case(s):
|
||
|
result = ""
|
||
|
for char in s:
|
||
|
result += char.upper()
|
||
|
return result
|