Python字符串的使用中有不少的知识需要我们学习。其实不管在什么样的环境下都是需要掌握相关的字符串的应用。下面我们就来看看Python字符串具体是如何编写的。
- #coding:utf-8
- #字符串的操作
- #使用中括号[]可以从字符串中取出任一个连续的字符
- #注意:中括号内表达式是字符串的索引,它表示字符在字符串内的位置,
- #中括号内字符串第一个字符的索引是0,而不是1
- #len返回字符串的长度
- test_string = "1234567890"
- print test_string[0] #result = 1
- print test_string[1] #result = 2
- print test_string[9] #result = 0
- print len(test_string) #result = 10
- #使用for循环遍历字符串
- for i in test_string:
- print i
- if (i == '5'):
- print "Aha,I find it!"
- print type(i) #<type 'str'>20
- #提取字符串的一部分
- #操作符[n:m]返回字符串中的一部分。从第n个字符串开始,到第m个字符串结束。
- #包括第n个,但不包括第m个。
- #如果你忽略了n,则返回的字符串从索引0开始
- #如果你忽略了m,则字符串从n开始,到最后一个字符串
- test_string = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
- print test_string[0:5] #result = 'ABCDE'
- print test_string[8:11] #result = 'IJK'
- print test_string[:6] #result = 'ABCDEF'
- print test_string[20:] #result = 'UVWXYZ'
- print test_string[:] #result = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
以上就是对Python字符串在使用中的代码介绍。
【编辑推荐】