Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -13,6 +13,7 @@ def to_uppercase(arg1:str)-> str: #it's import to specify the return type
|
|
13 |
arg1: the sentence to be converted to uppercase
|
14 |
"""
|
15 |
i = 0
|
|
|
16 |
for text in arg1:
|
17 |
if i % 2 == 0:
|
18 |
text.upper()
|
|
|
13 |
arg1: the sentence to be converted to uppercase
|
14 |
"""
|
15 |
i = 0
|
16 |
+
output = ""
|
17 |
for text in arg1:
|
18 |
if i % 2 == 0:
|
19 |
text.upper()
|