fork download
  1. text= "Hello|Python|World"
  2. bb=text.replace("Python","AI")
  3. print(bb)
  4. print(bb.upper())
Success #stdin #stdout 0.07s 14068KB
stdin
Standard input is empty
stdout
Hello|AI|World
HELLO|AI|WORLD