fork download
  1. x = "hello I am a string"
  2. x.replace(" ", "")
  3. print "value of x: ", x
  4.  
  5. y = "Hello I am also a string"
  6. y = y.replace(" ", "")
  7. print "value of y: ", y
Success #stdin #stdout 0.01s 7852KB
stdin
Standard input is empty
stdout
value of x:  hello I am a string
value of y:  HelloIamalsoastring