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

python 字符串的魔法 day11(2)

时间:2018-06-06 23:46:12      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:TE   ===   dex   test   AC   python   下标   color   lex   

索引,下标,获取字符中的某一个字符

test = "alex"
v = test[0:1]  #显示的是第0号<=1号字符
print(v)

一行字竖行循环分开

test = "水果啥的广东省公司的发生"
index = 0
while index < len(test):
    v = test[index]
    print(v)
    index += 1
print(====)

替换

test = "水果啥的广东省公司的发生"
v = test.replace(,1)
print(v)

创造连续/不连续数字,定位循环

test = input(请输入)
print(test)
l = len(test)
print(l)
r = range(0,l)
for item in r:
    print(item,test[item])

 

python 字符串的魔法 day11(2)

标签:TE   ===   dex   test   AC   python   下标   color   lex   

原文地址:https://www.cnblogs.com/wangleiyifan/p/9147738.html

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