How python uses the function unpack
This article mainly introduces python how to use the function unpack, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let Xiaobian take you to understand.
Function unpack
Def foo (x, y): print x, yalist = [1,2] adict = {'Xerox: 1,' yearly: 2} foo (* alist) # 1, 2foo (* * adict) # 1, 2 Thank you for reading this article carefully. I hope the article "how to use python function unpack" shared by the editor will be helpful to you. At the same time, I hope you can support us, pay attention to the industry information channel, and more related knowledge is waiting for you to learn!