How to send each list element as a function parameter in python?
list1 = ['38', '39', '40', ...]
any_function(list_item)
I can't know that length of the list that's why i can't send every element of the list as a function's parameter at the same time. Is there any Pythonic way?