fork(3) download
  1. cnt = []
  2. cnt.append([[272, 271]])
  3. cnt.append([[271, 272]])
  4. cnt.append([[270, 272]])
  5. cnt.append([[269, 272]])
  6. cnt.append([[268, 272]])
  7.  
  8. xList = [x[0][0] for x in cnt]
  9. print(xList)
Success #stdin #stdout 0.01s 9024KB
stdin
Standard input is empty
stdout
[272, 271, 270, 269, 268]