fork download
  1. # your code goes here
  2.  
  3. x = 'Hello=00 World.'
  4. print x[7]
  5. a=x[6:8]
  6. print a
Success #stdin #stdout 0s 23288KB
stdin
Standard input is empty
stdout
0
00