all I am very new to Python. I want to receive input integers with possible white spaces. Here is an example.
if I input 1234 I receive [1,2,3,4].
if I input 12 34 I receive [1,2,3,4].
if I input 012 4 I receive [0,1,2,4].
How can I do that? Thank you in advance for the help.