Hacker News new | ask | show | jobs
by fiddlerwoaroof 3203 days ago

    >>> print([1,2,3])
    [1,2,3]
    >>> print(*[1,2,3])
    1 2 3
1 comments

That doesn't tell you anything about when the list is expanded.