以下方法,是在python2上运行的,编码也使用的是python2,

在对比python3后,发现,基本相同,也就是说在print后补上(),使用函数方式,是可以在python3下运行的,

删除了针对unicode起作用的方法,因为暂时用不上,以后如果需要,将会单独学习

将format方法提出,将单独写一篇

如果有错误,请前辈多多指正,新手入门,难免有自己的狭隘与思维错误,但如果误导了他人,就真是。。。不太好了,谢谢

 #coding:utf-8

 s1="http"
s2="http:/ /www.cnblogs.com/sub2020/p/7988111.html"
#取得字符串长度
print "len(s1):%d , len(s2):%d" %(len(s1),len(s2)) #string.upper() 转换 string 中的小写字母为大写
#string.lower() 转换 string 中所有大写字符为小写.
s3=s2.upper()
print "s3=s2.upper() :%s" %s3
print "s3.lower() :%s" %s3.lower() # string.capitalize() 把字符串的第一个字符大写
print "s1.capitalize() :",s1.capitalize() # string.title()
#返回"标题化"的 string,就是说所有单词都是以大写开始,其余字母均为小写(见 istitle())
print "s2.title() :%s" % s2.title() # string.istitle()
#如果 string 是标题化的(见 title())则返回 True,否则返回 False
print "s2.title().istitle() :%s" % s2.title().istitle()
print "s2.istitle() :%s" % s2.istitle() #string.swapcase() 翻转 string 中的大小写
#先把s2标题化,与上例相同,然后翻转大小写,输出
print "s2.title().swapcase() :%s" % s2.title().swapcase() # string.split(str="", num=string.count(str))
#以 str 为分隔符切片 string,如果 num有指定值,则仅分隔 num 个子字符串
list1 = s2.split("/")
print list1
for x,y in enumerate(list1):
print "list[%d]:%s" %(x,y) # string.count(str, beg=0, end=len(string))
#返回 str 在 string 里面出现的次数,如果 beg 或者 end 指定则返回指定范围内 str 出现的次数
print "s2.count('c') :%d" %s2.count('c')
print "s2.count('c',15) :%d" %s2.count('c',15)
print "s2.count('p',10,30) :%d" %s2.count('p',10,30) # string.find(str, beg=0, end=len(string))
#检测 str 是否包含在 string 中,如果 beg 和 end 指定范围,则检查是否包含在指定范围内,如果是返回开始的索引值,否则返回-1
print "s2.find('c') :%d" %s2.find('c')
print "s2.find('c',15) :%d" %s2.find('c',15)
print "s2.find('p',10,30) :%d" %s2.find('p',10,30) # string.startswith(obj, beg=0,end=len(string))
#检查字符串是否是以 obj 开头,是则返回 True,否则返回 False。如果beg 和 end 指定值,则在指定范围内检查.
print "s2.startswith('h') :%s" % s2.startswith('h')
print "s2.startswith('c',15) :%s" % s2.startswith('c',15)
print "s2.startswith('p',10,30) :" , s2.startswith('p',10,30) # string.rfind(str, beg=0,end=len(string)) 类似于 find()函数,不过是从右边开始查找.
print "s2.rfind('c') :%d" %s2.rfind('c')
print "s2.rfind('c',15) :%d" %s2.rfind('c',15)
print "s2.rfind('p',10,30) :%d" %s2.rfind('p',10,30) # string.index(str, beg=0, end=len(string))
#跟find()方法一样,只不过如果str不在 string中会报一个异常.
#string.rindex( str, beg=0,end=len(string)) 类似于 index(),不过是从右边开始.
print "s2.index('c') :%d" %s2.index('c')
print "s2.index('c',15) :%d" %s2.index('c',15)
#print "s2.index('p',10,30) :%d" %s2.index('p',10,30) # string.isalnum()
#如果 string 至少有一个字符并且所有字符都是字母或数字则返回 True,否则返回 False
print "s2.isalnum() :" ,s2.isalnum()
print "list1[3].isalnum() :" ,list1[3].isalnum() # string.isalpha()
#如果 string 至少有一个字符并且所有字符都是字母则返回 True,否则返回 False
print "s2.isalpha() :" ,s2.isalpha()
print "list1[4].isalpha() :" ,list1[4].isalpha() # string.isdigit()
#如果 string 只包含数字则返回 True 否则返回 False.
print "s2.isdigit() :" ,s2.isdigit()
print "list1[4].isdigit() :" ,list1[4].isdigit() # string.islower()
#如果 string 中包含至少一个区分大小写的字符,并且所有这些(区分大小写的)字符都是小写,则返回 True,否则返回 False
print "s2.islower() :" ,s2.islower()
print "list1[4].islower() :" ,list1[4].islower() # string.isupper()
#如果 string 中包含至少一个区分大小写的字符,并且所有这些(区分大小写的)字符都是大写,则返回 True,否则返回 False
print "s3.isupper() :%s" % s3.isupper()
print "list1[4].isupper() :%s" % list1[4].isupper() # string.isspace()
#如果 string 中只包含空格,则返回 True,否则返回 False.
print "s2.isspace() :" ,s2.isspace()
print "list1[1].isspace() :" ,list1[1].isspace() # string.join(seq)
#以 string 作为分隔符,将 seq 中所有的元素(的字符串表示)合并为一个新的字符串
print "s1.join(list1) :%s" % s1.join(list1)
#换一种更明显的分隔符,效果一样
s4="-*-"
print s4.join(list1) # max(str) 返回字符串 str 中最大的字母。
# min(str) 返回字符串 str 中最小的字母。
print "max(s2) :%s" % max(s2)
print "min(s1) :%s" % min(s1) # string.partition(str)
#有点像 find()和 split()的结合体,从 str 出现的第一个位置起,把 字 符 串 string 分 成 一 个 3 元 素 的 元 组
#(string_pre_str,str,string_post_str),如果 string 中不包含str 则 string_pre_str == string.
#string.rpartition(str) 类似于 partition()函数,不过是从右边开始查找.
#测试结果显示以 '/'为分隔符,partition方法从前向后分割,只会将字符串分割为3份的 元组,且无法用格式化字符代替
print "partition s2 by '/' for 3 parts in a tuple:" ,s2.partition('/') # string.replace(str1, str2, num=string.count(str1))
#把 string 中的 str1 替换成 str2,如果 num 指定,则替换不超过 num 次.
print "use s4 replace '/' in s2 :%s" % s2.replace('/',s4)
print "use s4 replace '/' in s2 for 2 times :%s" % s2.replace('/',s4,2) # string.center(width)
#返回一个原字符串居中,并使用空格填充至长度 width 的新字符串
print "s1.center(10,'*') :", s1.center(10,"*")
#当width<len时,原样返回str
print "s1.center(2) :", s1.center(2)
print "s1.center(5) :", s1.center(5) # string.rstrip() 删除 string 字符串末尾的字符,默认为空格.
print "s1.center(10,'*').rstrip('*') :%s" %s1.center(10,'*').rstrip('*')
# string.lstrip() 截掉 string 左边的字符,默认为空格.
print "s1.center(10,'*').lstrip('*') :%s" % s1.center(10,'*').lstrip('*')
# string.strip([obj]) 在 string 上执行 lstrip()和 rstrip()
print "s1.center(10,'*').strip('*') :%s" % s1.center(10,'*').strip('*') # string.zfill(width)
#返回长度为 width 的字符串,原字符串 string 右对齐,前面填充0
print "s1.zfill(20) :%s" % s1.zfill(20)
#与center方法一样,如果width<len,返回原字符串
print "s2.zfill(20) :%s" % s2.zfill(20)

output

len(s1):4 , len(s2):46
s3=s2.upper() :HTTP:/ /WWW.CNBLOGS.COM/SUB2020/P/7988111.HTML
s3.lower() :http:/ /www.cnblogs.com/sub2020/p/7988111.html
s1.capitalize() : Http
s2.title() :Http:/ /Www.Cnblogs.Com/Sub2020/P/7988111.Html
s2.title().istitle() :True
s2.istitle() :False
s2.title().swapcase() :hTTP:/ /wWW.cNBLOGS.cOM/sUB2020/p/7988111.hTML
['http:', ' ', 'www.cnblogs.com', 'sub2020', 'p', '7988111.html']
list[0]:http:
list[1]:
list[2]:www.cnblogs.com
list[3]:sub2020
list[4]:p
list[5]:7988111.html
s2.count('c') :2
s2.count('c',15) :1
s2.count('p',10,30) :0
s2.find('c') :12
s2.find('c',15) :20
s2.find('p',10,30) :-1
s2.startswith('h') :True
s2.startswith('c',15) :False
s2.startswith('p',10,30) : False
s2.rfind('c') :20
s2.rfind('c',15) :20
s2.rfind('p',10,30) :-1
s2.index('c') :12
s2.index('c',15) :20
s2.isalnum() : False
list1[3].isalnum() : True
s2.isalpha() : False
list1[4].isalpha() : True
s2.isdigit() : False
list1[4].isdigit() : False
s2.islower() : True
list1[4].islower() : True
s3.isupper() :True
list1[4].isupper() :False
s2.isspace() : False
list1[1].isspace() : True
s1.join(list1) :http:http httpwww.cnblogs.comhttpsub2020httpphttp7988111.html
http:-*- -*-www.cnblogs.com-*-sub2020-*-p-*-7988111.html
max(s2) :w
min(s1) :h
partition s2 by '/' for 3 parts in a tuple: ('http:', '/', ' /www.cnblogs.com/sub2020/p/7988111.html')
use s4 replace '/' in s2 :http:-*- -*-www.cnblogs.com-*-sub2020-*-p-*-7988111.html
use s4 replace '/' in s2 for 2 times :http:-*- -*-www.cnblogs.com/sub2020/p/7988111.html
s1.center(10,'*') : ***http***
s1.center(2) : http
s1.center(5) : http
s1.center(10,'*').rstrip('*') :***http
s1.center(10,'*').lstrip('*') :http***
s1.center(10,'*').strip('*') :http
0000000000000000http
http:/ /www.cnblogs.com/sub2020/p/7988111.html ***Repl Closed***

python string_3 end 内建函数详解的更多相关文章

  1. python之OS模块详解

    python之OS模块详解 ^_^,步入第二个模块世界----->OS 常见函数列表 os.sep:取代操作系统特定的路径分隔符 os.name:指示你正在使用的工作平台.比如对于Windows ...

  2. python之sys模块详解

    python之sys模块详解 sys模块功能多,我们这里介绍一些比较实用的功能,相信你会喜欢的,和我一起走进python的模块吧! sys模块的常见函数列表 sys.argv: 实现从程序外部向程序传 ...

  3. python中threading模块详解(一)

    python中threading模块详解(一) 来源 http://blog.chinaunix.net/uid-27571599-id-3484048.html threading提供了一个比thr ...

  4. Python数据类型及其方法详解

    Python数据类型及其方法详解 我们在学习编程语言的时候,都会遇到数据类型,这种看着很基础也不显眼的东西,却是很重要,本文介绍了python的数据类型,并就每种数据类型的方法作出了详细的描述,可供知 ...

  5. python引用和对象详解

    python引用和对象详解 @[马克飞象] python中变量名和对象是分离的 例子 1: a = 1 这是一个简单的赋值语句,整数 1 为一个对象,a 是一个引用,利用赋值语句,引用a指向了对象1. ...

  6. Python中time模块详解

    Python中time模块详解 在平常的代码中,我们常常需要与时间打交道.在Python中,与时间处理有关的模块就包括:time,datetime以及calendar.这篇文章,主要讲解time模块. ...

  7. Python 列表(List)操作方法详解

    Python 列表(List)操作方法详解 这篇文章主要介绍了Python中列表(List)的详解操作方法,包含创建.访问.更新.删除.其它操作等,需要的朋友可以参考下   列表是Python中最基本 ...

  8. Python模块调用方式详解

    Python模块调用方式详解 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 模块,用一砣代码实现了某个功能的代码集合. 类似于函数式编程和面向过程编程,函数式编程则完成一个功能,其 ...

  9. python之模块datetime详解

    # -*- coding: utf-8 -*- #python 27 #xiaodeng #python之模块datetime详解 import datetime #data=datetime.dat ...

随机推荐

  1. winmm.dll包含函数

    DLL 文件: winmm 或者 winmm.dll DLL 名称: Windows Multimedia API 描述: winmm.dll是Windows多媒体相关应用程序接口,用于低档的音频和游 ...

  2. java ArrayList迭代过程中删除

    第一种迭代删除方式: 第二种迭代删除方式: 第三种迭代删除: 第四种迭代删除: 第五种迭代删除: 第六种: ArrayList中remove()方法的机制,首先看源码: 真正的删除操作在fastRem ...

  3. 第六章 Linux文件与目录管理

    http://www.92csz.com/study/linux/6.htm 绝对路径:路径的写法一定由根目录”/”写起 相对路径:路径的写法不是由根目录”/”写起 mkdir 创建一个目录.mkdi ...

  4. 小小程序员的生产力工具——2017款MacBook pro 13.3(附使用技巧和常用链接)

    新买的2017款 MacBook pro 13.3 九号到了,第一次用苹果笔记本,用了两天基本熟悉了,各种软件也安装的差不多,把一些小技巧分享给大家.先放几张图   使用小常识,希望可以帮到您一:尽量 ...

  5. BZOJ 4773: 负环 倍增Floyd

    现在看来这道题就非常好理解了. 可以将问题转化为求两点间经过 $k$ 个点的路径最小值,然后枚举剩余的那一个点即可. #include <cstdio> #include <cstr ...

  6. event.stopPropagation()和event.preventDefault(),return false的区别

    我写公司的官网遇到一个问题,轮播图的上一层有一块内容,用鼠标拖动那块内容的时候下一层的轮播图也会跟着拖动,而上面的那层的内容是不会动的,我想这就是冒泡事件在作祟了吧 跟冒泡事件相关的,我想到三个: 1 ...

  7. Spring Cloud云架构 - SSO单点登录之OAuth2.0 根据token获取用户信息(4)

    上一篇我根据框架中OAuth2.0的使用总结,画了SSO单点登录之OAuth2.0 登出流程,今天我们看一下根据用户token获取yoghurt信息的流程: /** * 根据token获取用户信息 * ...

  8. 使用 UIStoryBoard 语法糖

    最后更新: 2018-09-06 当你用 UIStoryBoard (以下简称 'SB') 做iOS开发时候,总是避免不了设置 StoryBoard ID 的问题, StoryBoard ID 是一个 ...

  9. Linux系统设置开机自动启动ORACLE数据库服务

    具体方法如下: 1. 修改oratab (root用户执行) /etc/oratab的配置格式如下: $ORACLE_SID:$ORACLE_HOME:Y 2. 测试dbstart, dbstop(o ...

  10. 探究重构代码(Code refactoring)

    Code refactoring 是什么 在不改变软件的外部行为的条件下,通过修改代码改变软件内部结构,将效率低下和过于复杂的代码转换为更高效.更简单和更简单的代码. 怎样执行Code refacto ...