Is there a python method equivalent to *
and **
magic?
So, what I mean by this is instead of doing:
a = (1,2,3)
method(*a)
Instead do something like:
a = (1,2,3)
method(remove_magic(a))
Whilst reading through code I see *
and **
and just wish there was a nicer more readable way of doing this. I am hoping there is something within the python standard library which does this for me.