Python provides the \"*\" operator for unpacking a list of tuples and giving them to a function as arguments, like so:
args = [3, 6] range(*args)
Another example with ... - operator. RFC: https://wiki.php.net/rfc/variadics