I need to have users input a list for my program in order for it to work properly, and the list needs to be formatted like [1,1,2]. This is the code gathering the list input:
entry = list(input(": "))
I was having some problems and put it through a debugger and saw that the list was showing up as this:

How can I make it work correctly?