We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 746a3cf commit 9fce30fCopy full SHA for 9fce30f
String's/Mutations.py
@@ -3,9 +3,8 @@ def mutate_string(string, position, character):
3
st[position] = character
4
return("".join(st))
5
6
-
7
if __name__ == '__main__':
8
s = input()
9
i, c = input().split()
10
s_new = mutate_string(s, int(i), c)
11
- print(s_new)
+ print(s_new)
0 commit comments