text="Hello|Python|world"print(text)print(text.split("|"))ww=text.split("|")print(ww[0])print(ww[-1])qq=ww[0]+' '+ww[-1]print(qq)
Standard input is empty
Hello|Python|world ['Hello', 'Python', 'world'] Hello world Hello world
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!