Cara mencetak daftar tanpa 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