Como imprimir a lista sem nova linha

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