Here's the thing:
coords = [['60', '01'], ['30', '19']]
coords = [int(coords[i][j])/60**j for i in range(2) for j in range(len(coords[i]))]
Expected output:
>>>[[60.0, 0.016666666666666666], [30.0, 0.31666666666666665]]
What i've got:
>>>[60.0, 0.016666666666666666, 30.0, 0.31666666666666665]
Gimme a hint: how to assign values through list comprehension in a desired way?