res = 'jack'def index(): return 123ret = callable(res)ret2 = callable(index)print(f'ret:{ret}') # ret:Falseprint(f'ret2:{ret2}') # ret2:True