We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 718961d commit 8a334e7Copy full SHA for 8a334e7
py_app/uppercase.py
@@ -1,9 +1,13 @@
1
def to_uppercase(text: str) -> str:
2
return text.upper()
3
4
+def to_uppercase2(text: str) -> str:
5
+ return text.lower()
6
+ lenght = len(text)
7
+
8
if __name__ == "__main__":
9
import sys
10
if len(sys.argv) > 1:
11
print(to_uppercase(sys.argv[1]))
12
else:
- print("USAGE: uppercase.py <string_to_convert>")
13
+ print("USAGE: uppercase.py <string_to_convert>")
0 commit comments