fork(1) download
  1. def z():
  2. lst = []
  3. print(id(lst))
  4. return lst
  5.  
  6. a = z()
  7. b = z()
  8.  
  9. z()
  10. z()
  11. z() == z()
  12.  
Success #stdin #stdout 0.02s 9056KB
stdin
Standard input is empty
stdout
22868753486152
22868753486088
22868753444232
22868753444232
22868753444232
22868752945416