Python的字符串索引和分片

1.字符串的索引python 給出一個字符串,可輸出任意一個字符,若是索引爲負數,就是至關於從後向前數。函數 >>> str="HelloWorld!" >>> print str[0] H >>> print str[-4] r 2.字符串的分片spa 分片就是從給定的字符串中分離出部份內容。code >>> str="HelloWorld!" >>> print str[0] H >>> pr
相關文章
相關標籤/搜索