I'd like to print a message with a list separated by \n inside an f-string in python3.
my_list = ["Item1", "Item2", "Item3"]
print(f"Your list contains the following items:\n\n{my_list}")
Desired output:
# Your list contains the following items:
# Item1
# Item2
# Item3