list=['松','竹','梅']print(list[2:])print(list[1:2])print(list[:2])
Standard input is empty
['梅'] ['竹'] ['松', '竹']
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!