1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-19 22:16:57 +02:00
CodeWars/8kyu/make_upper_case/solution.py

6 lines
108 B
Python
Raw Normal View History

def make_upper_case(s):
result = ""
for char in s:
result += char.upper()
return result