>>668
import numpy as np
a=np.array(a)
max1357=a[:,0].max()
max2468=a[:,1].max()

numpy無しなら
max1357=max(b[0] for b in a)
max2468=max(b[1] for b in a)