Possible Duplicate:
Creating a list in Python- something sneaky going on?
Creating an empty list in Python
Consider the following:
mylist = list()
and:
mylist = []
Is there any benefit to using list() or [] - should one be used over the other in certain situation?