luke9705 commited on
Commit
31d692f
·
verified ·
1 Parent(s): 49ec2de

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ def to_uppercase(arg1:str)-> str: #it's import to specify the return type
16
  output = ""
17
  for text in arg1:
18
  if i % 2 == 0:
19
- text.upper()
20
  i += 1
21
  output = output + text
22
  return output
 
16
  output = ""
17
  for text in arg1:
18
  if i % 2 == 0:
19
+ text = text.upper()
20
  i += 1
21
  output = output + text
22
  return output