fork download
  1. l=[[11, 14, 16, 10],
  2. [12, 15, 17, 10],
  3. [13, 11, 14, 11],
  4. [12, 10, 13, 8],
  5. [11, 13, 14, 10]]
  6.  
  7.  
  8. print(max(zip(*l)[0]))
  9. #print max(l[0])
  10.  
  11. #縦ソートを行うには?
Success #stdin #stdout 0.01s 23352KB
stdin
Standard input is empty
stdout
13