pip install loso
python
from loso.string_utils import StringUtils
python
string_utils = StringUtils()
uppercased_text = string_utils.to_uppercase('hello world')
reversed_text = string_utils.reverse('hello world')
print(uppercased_text)
print(reversed_text)