As my original question was closed due to 'not being minimalistic', I will explain what I want to do by giving you an example that I have made up.
I have a function called 'persona()' and this function has argument called 'alpha', 'beta', 'gamma' that just gets bool as its value (true or false) like this:
face = persona(alpha=true, beta=false, gamma=false)
and I have a list that looks like below because I had no other option to get it otherwise.
ar_list = ['alpha', 'beta', 'gamma']
ar_column = ['a', 'b', 'c', 'd']
If I want to get element in ar_list as an argument name of function persona(), how can I achieve this? Below was what I 'hoped' to do, but this surely will not work. But I hope there are ways to achieve something like this.
for ar in ar_column:
pesona(ar_list[0] = (some calculation using 'alpha' and ar),
ar_list[1] = (some calculation using 'beta' and ar),
ar_list[2] = (some calculation using 'gamma' and ar))