Direct input to be able to use it in another function

Hello everyone,

I just tried lots of different thing but all failed, please let me know how can I do:

app.callback(
    Output('...','...'),
    Input('a','...')
)
def first_function(a, b):
    ....

app.callback(
    Output('...','...'),
    Input('c','...')
)
def second_function(c):
    my_list = []
    for b in range(1, 10):
        my_list .append(first_function(b))

Thank you

Hi @Hello

Is this a Question or a riddle? :thinking:

Please explain your goal and the problem you are facing :grinning: