cara menerima input sebagai daftar pyhton

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