Comment accepter les entrées comme liste Pyhton

print("Please enter the value of list separated by space")
list_input = list(input())
print(list_input)
James Demisse