Example:
My Input is:
['00','01', '02', '20', '21']
I have tried:
[int(i) for i in Input]
Which results in:
[0, 1, 2, 20, 21]
But I'd like the output to be:
[00, 01, 02, 20, 21]
If I format using:
['% 02d'% i for i in Input]
To get all the decimal places, my list becomes string being, I'd like the results list to contain integers