fork download
  1. # your code goes here
  2.  
  3. a = "air"
  4.  
  5. attrs = dir(a)
  6.  
  7. b = "%s|%s"%("hello","DCA2020")
  8. print(b)
  9. print("dca" in b.lower())
  10.  
  11.  
  12.  
  13. p = dict()
  14. p[1]=2
  15. p[3] = 6
  16.  
  17. print(p)
Success #stdin #stdout 0.04s 9700KB
stdin
Standard input is empty
stdout
hello|DCA2020
True
{1: 2, 3: 6}