When I display the list in the console, it shows it with brackets and without line breaks, just everything is written in that line.
workers = ['1. Lololosh Lololoshin \n', '2. Makentosh Makentoshin \n', '3. Dratatosh Dratatoshin \n'] print(workers) who = input('Who are you: ') Tell me how to display it without brackets, commas in a column. If there is an option not to use lists, but something else is welcome.
print(*workers, sep='')- godvaprint(''.join(workers))- Sergey Gornostaev