trying to do simple loop and insert 0 if condition is true, but it not working.
could you please help me to solve this simple issue
Thank you
a_list = [1,2,3]
num = 0
for i in a_list:
if len(str(i)) < 2 :
a_list.insert(i,num)
print(a_list)
a_list must be [01,02,03]