вернуть все значения в список Python

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

for value in list:
  print(value)
Shy Squirrel