fork download
  1. # import pandas as pd
  2. # d={'a':10,'b':20,'c':30}# your code goes here
  3. # print(pd.Series(data = [d.keys(),d.items(),d.values()]))
  4.  
  5. # print(7%-3)
  6.  
  7. a=[1,2,3]
  8. b=[1,2,3]
  9. a=b
  10.  
  11. print(a is b, a==b)
Success #stdin #stdout 0.13s 14168KB
stdin
Standard input is empty
stdout
True True