I am trying to convert a user input of numbers to a list where I can find the mean of those numbers but I can't figure out a way to do it as I'm only a beginner so can anyone help me out? Thanks!
num_input = input("Enter your numbers here: ")
numbers = [num_input]
mean = sum(numbers)/len(numbers)
print(mean)