Comment imprimer la liste sans pour Loop Python

list = ['a','b','c']
print(', '.join(list) # You can also delete the comma and just put space or you can use \n to make new line
Cant Code