mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-06 05:45:53 +00:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
ce03ae6822
commit
b4ec916773
@ -1,4 +1,6 @@
|
||||
def string_replace(text: str, input_string: str, replace_with_string: str, occurrence: int) -> str:
|
||||
def string_replace(
|
||||
text: str, input_string: str, replace_with_string: str, occurrence: int
|
||||
) -> str:
|
||||
"""
|
||||
https://docs.python.org/3/library/stdtypes.html#str.replace
|
||||
The replace() method replaces a specified string with another specified string.
|
||||
@ -19,4 +21,5 @@ def string_replace(text: str, input_string: str, replace_with_string: str, occur
|
||||
|
||||
if __name__ == "__main__":
|
||||
from doctest import testmod
|
||||
|
||||
testmod()
|
||||
|
Loading…
x
Reference in New Issue
Block a user