17 lines
555 B
Python
17 lines
555 B
Python
l1 = ["This list should be broken up", "into multiple lines", "because it is way too long"]
|
|
l2 = ["But this list shouldn't", "even though it also has", "way too many characters in it"] # fmt: skip
|
|
l3 = ["I have", "trailing comma", "so I should be braked",]
|
|
|
|
# output
|
|
|
|
l1 = [
|
|
"This list should be broken up",
|
|
"into multiple lines",
|
|
"because it is way too long",
|
|
]
|
|
l2 = ["But this list shouldn't", "even though it also has", "way too many characters in it"] # fmt: skip
|
|
l3 = [
|
|
"I have",
|
|
"trailing comma",
|
|
"so I should be braked",
|
|
] |