We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04e84b9 commit 0a7d215Copy full SHA for 0a7d215
strings/swapcase.py
@@ -9,7 +9,7 @@
9
"""
10
11
12
-def swap_case(input_string : str) -> str:
+def swap_case(input_string: str) -> str:
13
"""This method will swap the cases of a given string
14
eg: input: input_string= "Hello" output: swapped_string="hELLO" """
15
list_representation = list(input_string)
0 commit comments