Suppose I have a function that takes string arguments. But I want to dynamically generate them. It seems that there is no way to easily connect this. How it's done? See my example here
i_take_strings('one', 'two', 'and_the_letter_C') s = 'one two and_the_letter_c' i_take_strings(x for x in s.split())
source share