def func(txt: str):
    """
    .. code-block:: python

        result = func('a')

    >>> print(result)
    aa

    """
    return txt*2
