Retorne todos os valores em uma lista python

list = ['1','2','3','4']

for value in list:
  print(value)
Shy Squirrel