Documentation for do_nothing
¶
Functionality¶
The function do_nothing
returns the input text unmodified. It is used as a placeholder where no text transformation is desired.
Parameters¶
text
(str): The input string that is returned as is.
Usage¶
- Purpose: Use this function when the original text should be preserved without modifications.
Example¶
result = do_nothing('sample text')
print(result)
sample text