字符串位置

1 a="hello"
2 b=a[0]#0
3 print(b)
4 a="hello"
5 b=a[0:2]#0<= x<2
6 print(b)

 

posted @ 2018-04-03 16:35  未来的技术  阅读(135)  评论(0编辑  收藏  举报