I have 2 lists:
c = [91.0, 92.0, 93.0, 94.0]
a = ['1,2,3,4', '1,2', '4,5,6', '']
result = [911, 912, 913, 914, 921, 922, 934, 935, 936, 94]
I tried this but still unable to get what I exactly want
result = [x for x in zip(c,a)]
Please help me.