13 lines
92 B
Python
13 lines
92 B
Python
a = 2
|
|
# fmt: skip
|
|
l = [1, 2, 3,]
|
|
|
|
# output
|
|
|
|
a = 2
|
|
# fmt: skip
|
|
l = [
|
|
1,
|
|
2,
|
|
3,
|
|
] |