All checks were successful
continuous-integration/drone/push Build is passing
4 lines
111 B
Python
4 lines
111 B
Python
def tr(s: str, character_to_remove: str):
|
|
for c in list(character_to_remove):
|
|
s = s.replace(c, "")
|