How to convert list to multiline string?
python
Solution
"""
{}
""".format("\n".join(items[1:]))
Problem
I have the following list: ``` ["Jargon", "Hello", "This", "Is", "Great"] ``` I want to populate a string with: ``` """ {} """.format(list-elements-besides-the-first) ``` Is there a simple one liner I could use to make it such that I can: - get all the elements of the array (besides the first element) and shove it into the {}? - Is it possible to make it so that each element shows up in its own line?