fork(1) download
  1. msg="hello 123 WORLD"
  2. new_msg=msg.replace("WORLD","Python")
  3. result=new_msg.lower()
  4. print("结果:",result)
Success #stdin #stdout 0.07s 14140KB
stdin
Standard input is empty
stdout
结果: hello 123 python