标签:bsp 包括 补充 color test strong 老男孩 str int
字符串灰魔法:索引 切片 for 循环 len
#索引,下标,获取字符串中的某一个字符
test1="laonanhai"
# v=test1[1]
# print(v)
#切片
# v=test1[0:-1]#表示起值是大于等于0小于最后一位(不包括最后一位-1)
# print(v)
#len python3汉子也是1个字符,python2.7一个汉子3个字符
test2="老男孩"
v1=len(test1)
v2=len(test2)
print(v1,v2)
test="老男孩最牛B"
count=0
while count<len(test):
v=test[count]
print(v)
count+=1
#for 变量名 in 字符串
for test1 in test:
print(test1)
标签:bsp 包括 补充 color test strong 老男孩 str int
原文地址:https://www.cnblogs.com/jianchixuexu/p/11440856.html