2008年6月20日 星期五

slicing

apply to string, list
return a new string or list
ex:
a="test"
a[1:3]
--->  es
( offset 1 to 2, not including 3)

a[1:]
-->  est
( left offset defaults to the length of a)

a[:3]
--> tes
(right offset defaults to 0)

沒有留言: