cara mencetak daftar tanpa newline

list = ['a','b','c']
for i in list:
  print(i, end=' ')
Cant Code