Y
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
aisofteng
3203 days ago
That doesn't tell you anything about when the list is expanded.
link