字符串类型str方法

首字母大写

temp = 'rttty'

ret = temp.capitalize()

print(ret)

===================================

内容居中

temp= 'kfkjdfj'

ret =temp.center(21,'*')   ###内容居中,两边空白处可以用任意符号填充

print(ret)

===================================

子序列个数

temp= ‘retegg  is hh’

ret = temp.count('g')  #计算字符串中的出现的个数

print(ret)

在指定范围内查找

a = ‘retegg  is hh’

ret = a.count('g',0,4)  #计算字符串中0到4的位置范围内g字母出现的次数

print(ret)

==================================

endwith 是否以........结尾

startwith是否以........开始

temp= ‘hello’

ret = temp.endwith('o')  ###判断是否以o 为结尾

print(ret)

---------------------------------------------------

temp = ‘hello’

ret = temp.endwith('e',0,2)  ###判断在0到2的范围内是否以e 为结尾

print(ret)

=================================================

expandtabs  将tab换成空格,一个tab转换成八个空格

temp =‘hello\t9999’  ###字符串中加上一个tab:\t

ret = temp.expandtabs()

print(ret)

================================================

find 查找,如果没有找到返回-1,从第0个位置开始找

temp = ‘start’

ret = temp.fnd('st')

print(ret)

 =========================================

format 字符串格式化

temp = 'hello {0} ,gae {1}'  ###其中{0} {1} 为站位符

new = temp.format('Tom','55')

print(new)  ##运行后应该输出 hello Tom, gae 55

=============================================

index 获取子序列位置,如果没有找到就报错, 与find 类似

=============================================

isalnum   判断是否是字母和数字 ,isalpha 判断是否为字母,isdigit 判断是否为数字

temp = 'sfdgdfs999'

ret = temp.isalnum()

============================================

islower 检查所有内容是不是都是小写

isspace 判断是否是空格

istitle 判断是否是标题

isupper 检验全部是不是大写

============================================

join  连接

li =  ['ab','cd]

s = '_*'.join(li)

print(s) ## 应该输出ab_*cd

===========================================

ljust 内容左对齐,右侧填充,意思就是将原有字符向左移,右侧新增填充

rjust 将字符串右对齐左侧填充

temp = ‘ttt’

ret = temp.ljust(6,*)  ###定义总长度为6,剩余位置用*号填充,应该输出为ttt***

=============================================

lower  将字符串变小写

lstrip 移除字符串左侧空格

rstrip 移除字符串右侧空格

strip 移除字符串两侧空格

============================================

 partition  分割字符串,成元组类型

s = ‘aa ff bb’

ret  = s.partition('ff')

print(ret) ##应该输出结果类型为元组 : (‘aa’ , ‘ff’ ,‘bb’)

===========================================

repalce 替换

s = ‘aa ff bb’

ret  = s.repalce ('ff',cc)

print(ret) ###将ff 替换成cc

==========================================

split 分割

s = ‘ttterrehh’

ret = s.split('e') # 通过e分割

print(ret)  ##应输出为:['ttt', 'rr', 'hhh']

=========================================

swapcase 大写变小写,小写变大写

s=‘sH’

ret = s.swapcase()

print(ret) ##输出Sh

============================================

title 变为标题

s =‘this is school’

ret = s.title() ##变为标题,首字母大写

============================================

索引

s = ‘tayy’

print(s[0])

print(s[1])

len(s)  获取字符长度

============================================

切片

获取前两个字符

print(s[0:2])  ##0=<0,1<2

============================================

for循环

s = ‘tayy’

for i in s:    ## i 为变量名,s为要循环的字符串等

  print(i)

 

 

 

 

 

 

 

class str(basestring):"""str(object='') -> stringReturn a nice string representation of the object.If the argument is a string, the return value is the same object."""def capitalize(self):  """ 首字母变大写 """"""S.capitalize() -> stringReturn a copy of the string S with only its first charactercapitalized."""return ""def center(self, width, fillchar=None):  """ 内容居中,width:总长度;fillchar:空白处填充内容,默认无 """"""S.center(width[, fillchar]) -> stringReturn S centered in a string of length width. Padding isdone using the specified fill character (default is a space)"""return ""def count(self, sub, start=None, end=None):  """ 子序列个数 """"""S.count(sub[, start[, end]]) -> intReturn the number of non-overlapping occurrences of substring sub instring S[start:end].  Optional arguments start and end are interpretedas in slice notation."""return 0def decode(self, encoding=None, errors=None):  """ 解码 """"""S.decode([encoding[,errors]]) -> objectDecodes S using the codec registered for encoding. encoding defaultsto the default encoding. errors may be given to set a different errorhandling scheme. Default is 'strict' meaning that encoding errors raisea UnicodeDecodeError. Other possible values are 'ignore' and 'replace'as well as any other name registered with codecs.register_error that isable to handle UnicodeDecodeErrors."""return object()def encode(self, encoding=None, errors=None):  """ 编码,针对unicode """"""S.encode([encoding[,errors]]) -> objectEncodes S using the codec registered for encoding. encoding defaultsto the default encoding. errors may be given to set a different errorhandling scheme. Default is 'strict' meaning that encoding errors raisea UnicodeEncodeError. Other possible values are 'ignore', 'replace' and'xmlcharrefreplace' as well as any other name registered withcodecs.register_error that is able to handle UnicodeEncodeErrors."""return object()def endswith(self, suffix, start=None, end=None):  """ 是否以 xxx 结束 """"""S.endswith(suffix[, start[, end]]) -> boolReturn True if S ends with the specified suffix, False otherwise.With optional start, test S beginning at that position.With optional end, stop comparing S at that position.suffix can also be a tuple of strings to try."""return Falsedef expandtabs(self, tabsize=None):  """ 将tab转换成空格,默认一个tab转换成8个空格 """"""S.expandtabs([tabsize]) -> stringReturn a copy of S where all tab characters are expanded using spaces.If tabsize is not given, a tab size of 8 characters is assumed."""return ""def find(self, sub, start=None, end=None):  """ 寻找子序列位置,如果没找到,返回 -1 """"""S.find(sub [,start [,end]]) -> intReturn the lowest index in S where substring sub is found,such that sub is contained within S[start:end].  Optionalarguments start and end are interpreted as in slice notation.Return -1 on failure."""return 0def format(*args, **kwargs): # known special case of str.format""" 字符串格式化,动态参数,将函数式编程时细说 """"""S.format(*args, **kwargs) -> stringReturn a formatted version of S, using substitutions from args and kwargs.The substitutions are identified by braces ('{' and '}')."""passdef index(self, sub, start=None, end=None):  """ 子序列位置,如果没找到,报错 """S.index(sub [,start [,end]]) -> intLike S.find() but raise ValueError when the substring is not found."""return 0def isalnum(self):  """ 是否是字母和数字 """"""S.isalnum() -> boolReturn True if all characters in S are alphanumericand there is at least one character in S, False otherwise."""return Falsedef isalpha(self):  """ 是否是字母 """"""S.isalpha() -> boolReturn True if all characters in S are alphabeticand there is at least one character in S, False otherwise."""return Falsedef isdigit(self):  """ 是否是数字 """"""S.isdigit() -> boolReturn True if all characters in S are digitsand there is at least one character in S, False otherwise."""return Falsedef islower(self):  """ 是否小写 """"""S.islower() -> boolReturn True if all cased characters in S are lowercase and there isat least one cased character in S, False otherwise."""return Falsedef isspace(self):  """S.isspace() -> boolReturn True if all characters in S are whitespaceand there is at least one character in S, False otherwise."""return Falsedef istitle(self):  """S.istitle() -> boolReturn True if S is a titlecased string and there is at least onecharacter in S, i.e. uppercase characters may only follow uncasedcharacters and lowercase characters only cased ones. Return Falseotherwise."""return Falsedef isupper(self):  """S.isupper() -> boolReturn True if all cased characters in S are uppercase and there isat least one cased character in S, False otherwise."""return Falsedef join(self, iterable):  """ 连接 """"""S.join(iterable) -> stringReturn a string which is the concatenation of the strings in theiterable.  The separator between elements is S."""return ""def ljust(self, width, fillchar=None):  """ 内容左对齐,右侧填充 """"""S.ljust(width[, fillchar]) -> stringReturn S left-justified in a string of length width. Padding isdone using the specified fill character (default is a space)."""return ""def lower(self):  """ 变小写 """"""S.lower() -> stringReturn a copy of the string S converted to lowercase."""return ""def lstrip(self, chars=None):  """ 移除左侧空白 """"""S.lstrip([chars]) -> string or unicodeReturn a copy of the string S with leading whitespace removed.If chars is given and not None, remove characters in chars instead.If chars is unicode, S will be converted to unicode before stripping"""return ""def partition(self, sep):  """ 分割,前,中,后三部分 """"""S.partition(sep) -> (head, sep, tail)Search for the separator sep in S, and return the part before it,the separator itself, and the part after it.  If the separator is notfound, return S and two empty strings."""passdef replace(self, old, new, count=None):  """ 替换 """"""S.replace(old, new[, count]) -> stringReturn a copy of string S with all occurrences of substringold replaced by new.  If the optional argument count isgiven, only the first count occurrences are replaced."""return ""def rfind(self, sub, start=None, end=None):  """S.rfind(sub [,start [,end]]) -> intReturn the highest index in S where substring sub is found,such that sub is contained within S[start:end].  Optionalarguments start and end are interpreted as in slice notation.Return -1 on failure."""return 0def rindex(self, sub, start=None, end=None):  """S.rindex(sub [,start [,end]]) -> intLike S.rfind() but raise ValueError when the substring is not found."""return 0def rjust(self, width, fillchar=None):  """S.rjust(width[, fillchar]) -> stringReturn S right-justified in a string of length width. Padding isdone using the specified fill character (default is a space)"""return ""def rpartition(self, sep):  """S.rpartition(sep) -> (head, sep, tail)Search for the separator sep in S, starting at the end of S, and returnthe part before it, the separator itself, and the part after it.  If theseparator is not found, return two empty strings and S."""passdef rsplit(self, sep=None, maxsplit=None):  """S.rsplit([sep [,maxsplit]]) -> list of stringsReturn a list of the words in the string S, using sep as thedelimiter string, starting at the end of the string and workingto the front.  If maxsplit is given, at most maxsplit splits aredone. If sep is not specified or is None, any whitespace stringis a separator."""return []def rstrip(self, chars=None):  """S.rstrip([chars]) -> string or unicodeReturn a copy of the string S with trailing whitespace removed.If chars is given and not None, remove characters in chars instead.If chars is unicode, S will be converted to unicode before stripping"""return ""def split(self, sep=None, maxsplit=None):  """ 分割, maxsplit最多分割几次 """"""S.split([sep [,maxsplit]]) -> list of stringsReturn a list of the words in the string S, using sep as thedelimiter string.  If maxsplit is given, at most maxsplitsplits are done. If sep is not specified or is None, anywhitespace string is a separator and empty strings are removedfrom the result."""return []def splitlines(self, keepends=False):  """ 根据换行分割 """"""S.splitlines(keepends=False) -> list of stringsReturn a list of the lines in S, breaking at line boundaries.Line breaks are not included in the resulting list unless keependsis given and true."""return []def startswith(self, prefix, start=None, end=None):  """ 是否起始 """"""S.startswith(prefix[, start[, end]]) -> boolReturn True if S starts with the specified prefix, False otherwise.With optional start, test S beginning at that position.With optional end, stop comparing S at that position.prefix can also be a tuple of strings to try."""return Falsedef strip(self, chars=None):  """ 移除两段空白 """"""S.strip([chars]) -> string or unicodeReturn a copy of the string S with leading and trailingwhitespace removed.If chars is given and not None, remove characters in chars instead.If chars is unicode, S will be converted to unicode before stripping"""return ""def swapcase(self):  """ 大写变小写,小写变大写 """"""S.swapcase() -> stringReturn a copy of the string S with uppercase charactersconverted to lowercase and vice versa."""return ""def title(self):  """S.title() -> stringReturn a titlecased version of S, i.e. words start with uppercasecharacters, all remaining cased characters have lowercase."""return ""def translate(self, table, deletechars=None):  """转换,需要先做一个对应表,最后一个表示删除字符集合intab = "aeiou"outtab = "12345"trantab = maketrans(intab, outtab)str = "this is string example....wow!!!"print str.translate(trantab, 'xm')""""""S.translate(table [,deletechars]) -> stringReturn a copy of the string S, where all characters occurringin the optional argument deletechars are removed, and theremaining characters have been mapped through the giventranslation table, which must be a string of length 256 or None.If the table argument is None, no translation is applied andthe operation simply removes the characters in deletechars."""return ""def upper(self):  """S.upper() -> stringReturn a copy of the string S converted to uppercase."""return ""def zfill(self, width):  """方法返回指定长度的字符串,原字符串右对齐,前面填充0。""""""S.zfill(width) -> stringPad a numeric string S with zeros on the left, to fill a fieldof the specified width.  The string S is never truncated."""return ""def _formatter_field_name_split(self, *args, **kwargs): # real signature unknownpassdef _formatter_parser(self, *args, **kwargs): # real signature unknownpassdef __add__(self, y):  """ x.__add__(y) <==> x+y """passdef __contains__(self, y):  """ x.__contains__(y) <==> y in x """passdef __eq__(self, y):  """ x.__eq__(y) <==> x==y """passdef __format__(self, format_spec):  """S.__format__(format_spec) -> stringReturn a formatted version of S as described by format_spec."""return ""def __getattribute__(self, name):  """ x.__getattribute__('name') <==> x.name """passdef __getitem__(self, y):  """ x.__getitem__(y) <==> x[y] """passdef __getnewargs__(self, *args, **kwargs): # real signature unknownpassdef __getslice__(self, i, j):  """x.__getslice__(i, j) <==> x[i:j]Use of negative indices is not supported."""passdef __ge__(self, y):  """ x.__ge__(y) <==> x>=y """passdef __gt__(self, y):  """ x.__gt__(y) <==> x>y """passdef __hash__(self):  """ x.__hash__() <==> hash(x) """passdef __init__(self, string=''): # known special case of str.__init__"""str(object='') -> stringReturn a nice string representation of the object.If the argument is a string, the return value is the same object.# (copied from class doc)"""passdef __len__(self):  """ x.__len__() <==> len(x) """passdef __le__(self, y):  """ x.__le__(y) <==> x<=y """passdef __lt__(self, y):  """ x.__lt__(y) <==> x<y """passdef __mod__(self, y):  """ x.__mod__(y) <==> x%y """passdef __mul__(self, n):  """ x.__mul__(n) <==> x*n """pass@staticmethod # known case of __new__def __new__(S, *more):  """ T.__new__(S, ...) -> a new object with type S, a subtype of T """passdef __ne__(self, y):  """ x.__ne__(y) <==> x!=y """passdef __repr__(self):  """ x.__repr__() <==> repr(x) """passdef __rmod__(self, y):  """ x.__rmod__(y) <==> y%x """passdef __rmul__(self, n):  """ x.__rmul__(n) <==> n*x """passdef __sizeof__(self):  """ S.__sizeof__() -> size of S in memory, in bytes """passdef __str__(self):  """ x.__str__() <==> str(x) """pass

转载于:https://www.cnblogs.com/huangguabushihaogua/p/9219979.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/266834.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

好的编程风格

1。关键字 if, while, for 后有一个空格 2。号之类的双目运算符两侧都有空格 3。后缀运算符和操作数之间不加空格 例如 s.a , foo(argu) , a[i] 4。, 号和 ; 号之后要加空格&#xff0c;例如 foo(argu1, argu2) for (i0; i<20; i) 5。关于双目运算符两侧加空格可以灵活规定&…

android 时间戳 时区,三句话理解时区与时间戳

从不浪费时间的人&#xff0c;没有工夫抱怨时间不够。 —— 杰弗逊第一句话&#xff1a;时间戳时间不分东西南北、在地球的每一个角落都是相同的。他们都有一个相同的名字&#xff0c;叫时间戳。时间戳 指的就是Unix时间戳(Unix timestamp)。它也被称为Unix时间(Unix time)、PO…

windows下的diskpart指令彻底格式化清除U盘

参考&#xff1a;windows下的diskpart指令修复U盘分区 作者&#xff1a;丶PURSUING 发布时间&#xff1a;2021-02-02 09:38:55 网址&#xff1a;https://blog.csdn.net/weixin_44742824/article/details/113537038?spm1001.2014.3001.5501 参考&#xff1a;原文链接 作者&…

简述控制反转ioc_讲一下你理解的 DI 、IoC、DIP ?

作者 | 木小楠链接 |cnblogs.com/liuhaorain/p/3747470.html摘要面向对象设计(OOD)有助于我们开发出高性能、易扩展以及易复用的程序。其中&#xff0c;OOD有一个重要的思想那就是依赖倒置原则(DIP)&#xff0c;并由此引申出IoC、DI以及Ioc容器等概念。本文我们将一起学习这些概…

Zimbra高级应用之-双向证书认证(一)

使用zimbra作为企业邮件服务器的公司&#xff0c;可能会遇到这样一种情况&#xff1a;使用用户名密码的传统认证方法&#xff0c;经常会发现有人恶意登录用户邮箱&#xff0c;采取暴力 破解&#xff0c;不断尝试登录密码。同时&#xff0c;简单密码组合很轻易被破解。从而在未经…

Redis学习与实战之字符串命令

字符串命令 一、基本字符串命令 1.基本字符串操作命令(设置、取值、删除、取长度) 命令名称命令功能执行时间复杂度Set为指定的一个键设置对应的值&#xff0c;如果已经存在&#xff0c;则直接覆盖原来的值O(1)Mset对多个键设置对应的值&#xff0c;如果值已经存在&#xff0c;…

html模糊遮罩层磨砂玻璃,常见的PPT背景:如何设计PPT背景?

第一种&#xff1a;纯色背景纯色背景分为两类&#xff0c;一种为黑白灰等“无色”背景&#xff0c;另一种就是彩色背景。黑白灰等无色背景&#xff0c;是安全的背景&#xff0c;容易配色&#xff0c;所以在使用上最多&#xff0c;如果没有色彩基础的朋友&#xff0c;建议还是用…

linux分文件编程、静态库与动态库

参考&#xff1a;linux静态库与动态库编程 作者&#xff1a;丶PURSUING 发布时间&#xff1a;2021-02-02 16:51:49 网址&#xff1a;https://blog.csdn.net/weixin_44742824/article/details/113539449?spm1001.2014.3001.5501 目录一、分文件编程的引入优点实现二、库的概念什…

十万个为什么儿童版_《虹猫蓝兔十万个为什么》上架爱奇艺奇巴布绘本馆

虹猫蓝兔绘本《虹猫蓝兔十万个为什么》上架爱奇艺奇巴布绘本馆全套专区。《虹猫蓝兔海底历险记》在爱奇艺PC端首页推广。红网时刻6月11日讯(记者 胡邦建 )今日&#xff0c;记者从湖南漫联卡通文化传媒有限公司获悉&#xff0c;该公司旗下的虹猫蓝兔绘本《虹猫蓝兔十万个为什么》…

获取${}中的值? 比如说var a=${date },无法取出date中的值

https://zhidao.baidu.com/question/2079297372778181268.html 转载于:https://www.cnblogs.com/DixinFan/p/9221953.html

GNU make manual 翻译( 一百四十九)

继续翻译 5.7.4 The --print-directory Option ------------------------------------If you use several levels of recursive make invocations, the -w or --print-directory option can make the output a lot easier to understand by showing each directory as make sta…

创文html5作品,【《创文故事》纪录短片入围作品展播之七】引路人

剧情简介&#xff1a;他只是一名普普通通的教师&#xff0c;却每天风雨无阻地为学生引导起上学放学的路。而这一切&#xff0c;没有一分钱&#xff0c;也没有一分利。他以身作则&#xff0c;用自己的行动感染了周围的人&#xff1a;从一开始的几个人&#xff0c;发展到现在几百…

树莓派外设开发基础(wiringPi库)

参考&#xff1a;树莓派外设开发基础篇 作者&#xff1a;丶PURSUING 发布时间&#xff1a;2021-02-05 18:20:53 网址&#xff1a;https://blog.csdn.net/weixin_44742824/article/details/113673019?spm1001.2014.3001.5501 目录外设开发综述及wiringPi库是什么如何获取如何使…

html仿百度页面代码_百度优化需要注意的4点

百度优化的技术很多&#xff0c;需要根据行业特点进行开拓和挖掘。还需要有多年的网络营销服务经验&#xff0c;进行网站分析、关键词分析、同行竞争分析&#xff0c;优化开始后监视网站流量数据。所以百度优化需要注意的4点如下&#xff1a;(1)页面优化。页面质量不高&#xf…

网页版计算器

网页版计算器 http://files.cnblogs.com/voidobject/%E7%BD%91%E9%A1%B5%E5%BD%A2%E5%BC%8F%E7%9A%84%E8%AE%A1%E7%AE%97%E5%99%A8.rar转载于:https://www.cnblogs.com/voidobject/archive/2012/10/04/2711642.html

android导航屏幕,发现具有软件导航栏的Android设备的真实屏幕尺寸(以像素为单位)...

我需要能够知道屏幕的确切大小,不包括软件导航栏.我正在使用andengine来制作游戏.我们希望全力支持新的Nexus系列(4,7和10)根据许多人指出的this page,软件导航栏的大小应为48dp.然后使用this优秀stackexchange帖子上的信息我收集了用于计算软件导航栏大小的公式应该是&#xf…

清除浮动小记,兼容Ie6,7

.clearfix { *zoom:1;}.clearfix:after{clear:both; display:block; height:0; visibility:hidden; line-height:0; content:\20;}转载于:https://www.cnblogs.com/chenhuichao/p/9223571.html

antd vue 多个下拉 联动_Antd下拉选择,自动匹配功能的实现

我就废话不多说了&#xff0c;大家还是直接看代码吧~placeholder"客户名称"showSearchoptionFilterProp"children"//自动匹配输入onChange{this.selectChange}>{this.state.selectCustomer}补充知识&#xff1a;antd select如何支持既能输入不存在的选项…

树莓派串口通信

目录相关概念简述半双工与全双工串口通信注重什么串口通信编程常用API初次使用需要配置树莓派和电脑串口之间读、写、交互接线编写程序其他简单了解为什么说linux一切皆文件查找文件是否存在相关概念 简述半双工与全双工 全双工允许通信双方同时互传数据&#xff1b;半双工不…

英文环境下中文输入法的设置

英文环境下使用ibus输入法 centos安装的时候已经选择了中文支持&#xff0c;输入法也已经安装&#xff0c;但在英文环境下面竟然无法使用中文输入法&#xff0c;解决办法记录于此&#xff0c; 1.安装ibus(centos6以后已经默认安装) #yum install ibus&#xff08;已经安装了中文…