python字符串的魔法7
Posted biqiuqiu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python字符串的魔法7相关的知识,希望对你有一定的参考价值。
#6个基本方法,要记住的 join split find strip upper lower
#索引,下标:通过索引获取字符串中的某一个字符 test = ‘alex‘ v1 = test[0] v2 = test[1] v3 = test[2] v4 = test[3] v5 = test[0:1] #索引范围, 大于等于0,小于1 v6 = test[0:-1] print(v1) print(v2) print(v3) print(v4) print(v5) print(v6) # len() 字符串里面有多少个字符组成 v7 = len(test) print(v7) # len() 对于列表的使用,计算列表中有多少个元素 li = [11,22,33,44,55,‘asd‘] v8 = len(li) print(v8) 输出: a l e x a ale 4 6
#while循环的使用,打印字符串 test =‘安德森思考街道啊速度非常快‘ index= 0 while index < len(test): v = test[index] print(v) index += 1 print("=====") 输出: 安 德 森 思 考 街 道 啊 速 度 非 常 快 =====
#for 循环的使用 test =‘安德森思考街道啊速度非常快‘ for i in test: print(i) print(‘====‘) 输出: 安 德 森 思 考 街 道 啊 速 度 非 常 快 ====
以上是关于python字符串的魔法7的主要内容,如果未能解决你的问题,请参考以下文章