码迷,mamicode.com
首页 > 编程语言 > 详细

python中字符串用法

时间:2018-01-22 17:36:08      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:style   分享   open   int   item   close   pytho   用法   color   

s = "This is a test string"

1.索引

s[0] = T

s[1] = h

2.长度

len(s) =>21

3.切片

s[0:2] =>Th

4.循环(continue 和 break)

技术分享图片
for item in s:
    if item==h:
        continue
    print(item)
View Code

 

  

 

python中字符串用法

标签:style   分享   open   int   item   close   pytho   用法   color   

原文地址:https://www.cnblogs.com/pipi-vincent/p/8329602.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!