what happen when we apply 2a before list in python

Solutions on MaxInterview for what happen when we apply 2a before list in python by the best coders in the world

showing results for - "what happen when we apply 2a before list in python"
Ray
26 May 2016
1Asterisks for unpacking into function call
2That print(*fruits) line is passing all of the
3items in the fruits list into the print 
4function call as separate arguments, without 
5us even needing to know how many arguments are in the list.
6... Both * and ** can be used multiple times in function calls