Unpacking Argument Lists : Function Tuple Parameters : Function PYTHON examples


PYTHON examples » Function » Function Tuple Parameters »

 

Unpacking Argument Lists


Unpacking Argument Lists




#The reverse situation occurs when the arguments are already in a list or tuple 
#but need to be unpacked for function call requiring separate positional 
#arguments. For instance, the built-in range() function expects separate start 
#and stop arguments. If they are not available separately, write the function 
#call with the *-operator to unpack the arguments out of a list or tuple:

print range(36)             # normal call with separate arguments

args = [36]

print range(*args)            # call with arguments unpacked from a list

           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Function
» Function Tuple Parameters