I want to extract integers from a string in which integers are separated by blank spaces i.e \' \'. How could I do that ??
Input
I=\'1 15 163 132\' <
Try the following:-
I='1 15 163 132' map(int, a.split(' '))