1

Possible Duplicate:
What does ** and * do for python parameters?

I saw this in a function definition, this was located in heapq.py, the python implementation of a heap queue

def merge(*iterables):
Community
  • 1
  • 1
abhi488
  • 81
  • 5

1 Answers1

1

You can read this part of the Python tutorial and this post.

Community
  • 1
  • 1
Nicolas
  • 5,583
  • 1
  • 25
  • 37