fork download
  1. # your code goes here
  2. word = "ABCDE"
  3.  
  4.  
  5.  
  6. print('x' + word[1:])
  7.  
  8. print('Splat' + word[4])
Success #stdin #stdout 0.02s 8688KB
stdin
Standard input is empty
stdout
xBCDE
SplatE