fork download
  1. MASTER = [10,11,12,13,14]
  2.  
  3. LISTA = [0,1,2]
  4. LISTB = [0,3,4]
  5.  
  6. for i in LISTA: MASTER[i] += 10
  7. for i in LISTB: MASTER[i] += 10
  8.  
  9. print MASTER[LISTA[0]]
  10.  
  11. print MASTER[LISTB[0]]
  12.  
Success #stdin #stdout 0.01s 7728KB
stdin
Standard input is empty
stdout
30
30