Python之字符串-创新互联
在Python中字符串是不可变变量,对其进行切片及其中的元素复制都会报错
我们提供的服务有:网站设计、成都网站制作、微信公众号开发、网站优化、网站认证、华容ssl等。为上千家企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的华容网站制作公司>>> str = "This is Python" >>> str[0:3] = "abc" Traceback (most recent call last): File "其常用的方法:
split
用法:str.split(sep=None, maxsplit=-1)
将字符串划分为序列
>>> env = "/usr/bin/python" >>> tmp_env = env.split("/") >>> tmp_env ['', 'usr', 'bin', 'python']replace
用法:str.replace(old,new[,max])
将指定子串替换为另一个子串,并返回替换后的结果,但不会改变原String的内容
>>> str = "This are Python" >>> rep_str = str.replace("are","is") >>> rep_str 'This is Python' >>> str 'This are Python' >>> str = "This is Python,That is Great" >>> rep_str = str.replace("is","was",2) >>> rep_str 'Thwas was Python,That is Great'find
用法:str.find(sub[, start[, end]])
在字符串中查找字串,若找到,则返回字串的第一个字符的索引,否则,返回-1
>>> str = "This is Python,Hello ,中国,您好" >>> fd_str = str.find("is") >>> fd_str 2 >>> str[fd_str] 'i' >>> fd_str2 = str.find("中") >>> str[fd_str2] '中' >>> str1 = "That is dog".find("G") >>> str1 -1join
用法:str.join(iterable)
合并序列的元素
>>> dirs = ['','usr','bin','python'] >>> '/'.join(dirs) '/usr/bin/python' >>> num = [1,2,3,4] #合并数字列表,报错 >>> seq = '+' >>> seq.join(num) Traceback (most recent call last): File "strip
用法:str.
strip
([chars])
将字符串开头和末尾的空白(不包括中间的空白)删除,并返回结果
>>> " Hello,World!".strip() 'Hello,World!' >>> "Hello,World ".strip() 'Hello,World' >>> " Hello,World ".strip() 'Hello,World' >>> "Hello, World! !".strip() 'Hello, World! !' >>> "www.baidu.com".strip("com") 'www.baidu.' >>> "www.baidu.com".strip(".com") 'www.baidu'center
用法:str.
center
(width[, fillchar])
通过在两边填充字符(默认为空格)让string居中
>>> "0123456789".center(1) '0123456789' >>> "0123456789".center(-1) '0123456789' >>> "0123456789".center(10) '0123456789' >>> "0123456789".center(11) ' 0123456789' >>> "0123456789".center(11,"*") '*0123456789' >>> "0123456789".center(12,"*") '*0123456789*' >>> "0123456789".center(20,"*") '*****0123456789*****'详细的String参数可参考官网文档:
https://docs.python.org/3.7/library/stdtypes.html?highlight=replace#str.replace
另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
当前题目:Python之字符串-创新互联
文章分享:http://scyanting.com/article/diceop.html