def fun(strinfo,index): if index >= len(strinfo): return else: fun(strinfo, index + 1) print(strinfo[index], end='')