python3.12 Class str详解

字符串作为计算里面一个重要的对象,在Python的实现是通过定义类来描述它的。这是一篇字典式的文章,我们详细描述字符串实例的各个办法。
一:
实例化的办法:‘’。比如:

s='python'

二:字符串类的办法。(参数列表中的 “ / ",表示在此之前的都是位置参数。
1.
capitalize
2.casefold
3.center
4.count
5.encode
6.endswith
7.expandtabs
8.find
9. format(…)
| S.format(*args, **kwargs) -> str
|
| Return a formatted version of S, using substitutions from args and kwargs.
| The substitutions are identified by braces (‘{’ and ‘}’).
|
10. format_map(…)
| S.format_map(mapping) -> str
|
| Return a formatted version of S, using substitutions from mapping.
| The substitutions are identified by braces (‘{’ and ‘}’).

  1. index(…)
    | S.index(sub[, start[, end]]) -> int
    |
    | Return the lowest index in S where substring sub is found,
    | such that sub is contained within S[start:end]. Optional
    | arguments start and end are interpreted as in slice notation.
    |
    | Raises ValueError when the substring is not found.
    11.1
    返回发现的匹配的子串的第一个字母的切片位置
>>> s='abca'
>>> s.index('a')
0

发现不了,会报错,正如文档的说明。

  1. isalnum(self, /)
    | Return True if the string is an alpha-numeric string, False otherwise.
    |
    | A string is alpha-numeric if all characters in the string are alpha-numeric and
    | there is at least one character in the string.
    |
  2. isalpha(self, /)
    | Return True if the string is an alphabetic string, False otherwise.
    |
    | A string is alphabetic if all characters in the string are alphabetic and there
    | is at least one character in the string.
    |
  3. isascii(self, /)
    | Return True if all characters in the string are ASCII, False otherwise.
    |
    | ASCII characters have code points in the range U+0000-U+007F.
    | Empty string is ASCII too.
    |
  4. isdecimal(self, /)
    | Return True if the string is a decimal string, False otherwise.
    |
    | A string is a decimal string if all characters in the string are decimal and
    | there is at least one character in the string.

16.isdecimal(self, /)
| Return True if the string is a decimal string, False otherwise.
|
| A string is a decimal string if all characters in the string are decimal and
| there is at least one character in the string.
|

17 isdigit(self, /)
| Return True if the string is a digit string, False otherwise.
|
| A string is a digit string if all characters in the string are digits and there
| is at least one character in the string.
|

18 isidentifier(self, /)
| Return True if the string is a valid Python identifier, False otherwise.
|
| Call keyword.iskeyword(s) to test whether string s is a reserved identifier,
| such as “def” or “class”.
|
19.islower(self, /)
| Return True if the string is a lowercase string, False otherwise.
|
| A string is lowercase if all cased characters in the string are lowercase and
| there is at least one cased character in the string.
|
20. isnumeric(self, /)
| Return True if the string is a numeric string, False otherwise.
|
| A string is numeric if all characters in the string are numeric and there is at
| least one character in the string.
|

  1. isprintable(self, /)
    | Return True if the string is printable, False otherwise.
    |
    | A string is printable if all of its characters are considered printable in
    | repr() or if it is empty.
    |

22 isspace(self, /)
| Return True if the string is a whitespace string, False otherwise.
|
| A string is whitespace if all characters in the string are whitespace and there
| is at least one character in the string.
|

  1. istitle(self, /)
    | Return True if the string is a title-cased string, False otherwise.
    |
    | In a title-cased string, upper- and title-case characters may only
    | follow uncased characters and lowercase characters only cased ones.
    |

  2. isupper(self, /)
    | Return True if the string is an uppercase string, False otherwise.
    |
    | A string is uppercase if all cased characters in the string are uppercase and
    | there is at least one cased character in the string.

  3. join(self, iterable, /)
    | Concatenate any number of strings.
    |
    | The string whose method is called is inserted in between each given string.
    | The result is returned as a new string.
    |
    | Example: ‘.’.join([‘ab’, ‘pq’, ‘rs’]) -> ‘ab.pq.rs’
    25.1按照这个函数的说明,下面就是我们常用的,把列表转为字符串的办法(用空字符串)

''.join( L)

比如:

l=[1,2,3]
s =''.join( l)

会报错,必须要字符列表的实例😅

TypeError: sequence item 0: expected str instance, int found

25.2换成字符串列表,如下(或者考虑int 转str)

>>> l=['fly','me','to','the','moon']
>>> l
['fly', 'me', 'to', 'the', 'moon']
>>> ''.join(l)
'flymetothemoon'
>>>

25.3
还可以在字符串列表中,增添我们想要的东西:

>>> li =['a','new','moon','is','raising']
>>> li
['a', 'new', 'moon', 'is', 'raising']
>>> 'xxx'.join( li)
'axxxnewxxxmoonxxxisxxxraising'
>>> '**'.join( li)
'a**new**moon**is**raising'

25.4
另外,int如何转为str呢?只要使用str关键字就好了,但是str转为int也许应该小心,如下:
int转str

>>> type( 1)
<class 'int'>
>>> s = str(1)
>>> type( s)
<class 'str'>
>>> s
'1'

str转int,报错。因为编译器会预先检查整个字符串是否可以转为十进制。(就是按照十进制的在当前编译环境下的编码(一般是utf-8),去查?)尚不清楚原理?

>>> s ='moon'
>>> type(s)
<class 'str'>
>>> i =int( s)
Traceback (most recent call last):File "<stdin>", line 1, in <module>
ValueError: invalid literal for int() with base 10: 'moon'

26 ljust(self, width, fillchar=’ ', /)
| Return a left-justified string of length width.
|
| Padding is done using the specified fill character (default is a space).
|
|

27.lower(self, /)
| Return a copy of the string converted to lowercase.

  1. lstrip(self, chars=None, /)yiju
    | Return a copy of the string with leading whitespace removed.
    |
    | If chars is given and not None, remove characters in chars instead.
    |

  2. partition(self, sep, /)
    | Partition the string into three parts using the given separator.
    |
    | This will search for the separator in the string. If the separator is found,
    | returns a 3-tuple containing the part before the separator, the separator
    | itself, and the part after it.
    |
    | If the separator is not found, returns a 3-tuple containing the original string
    | and two empty strings.

  3. removeprefix(self, prefix, /)
    | Return a str with the given prefix string removed if present.
    |
    | If the string starts with the prefix string, return string[len(prefix):].
    | Otherwise, return a copy of the original string.

  4. removesuffix(self, suffix, /)
    | Return a str with the given suffix string removed if present.
    |
    | If the string ends with the suffix string and that suffix is not empty,
    | return string[:-len(suffix)]. Otherwise, return a copy of the original
    | string.

  5. replace(self, old, new, count=-1, /)
    | Return a copy with all occurrences of substring old replaced by new.
    |
    | count
    | Maximum number of occurrences to replace.
    | -1 (the default value) means replace all occurrences.
    |
    | If the optional argument count is given, only the first count occurrences are replaced.

  6. rfind(…)
    | S.rfind(sub[, start[, end]]) -> int
    |
    | Return the highest index in S where substring sub is found,
    | such that sub is contained within S[start:end]. Optional
    | arguments start and end are interpreted as in slice notation.
    |
    | Return -1 on failure.
    |

  7. rindex(…)
    | S.rindex(sub[, start[, end]]) -> int
    |
    | Return the highest index in S where substring sub is found,
    | such that sub is contained within S[start:end]. Optional
    | arguments start and end are interpreted as in slice notation.
    |
    | Raises ValueError when the substring is not found.

  8. rjust(self, width, fillchar=’ ', /)
    | Return a right-justified string of length width.
    |
    | Padding is done using the specified fill character (default is a space).

  9. rpartition(self, sep, /)
    | Partition the string into three parts using the given separator.
    |
    | This will search for the separator in the string, starting at the end. If
    | the separator is found, returns a 3-tuple containing the part before the
    | separator, the separator itself, and the part after it.
    |
    | If the separator is not found, returns a 3-tuple containing two empty strings
    | and the original string.

  10. rsplit(self, /, sep=None, maxsplit=-1)
    | Return a list of the substrings in the string, using sep as the separator string.
    |
    | sep
    | The separator used to split the string.
    |
    | When set to None (the default value), will split on any whitespace
    | character (including \n \r \t \f and spaces) and will discard
    | empty strings from the result.
    | maxsplit
    | Maximum number of splits.
    | -1 (the default value) means no limit.
    |
    | Splitting starts at the end of the string and works to the front.

  11. rstrip(self, chars=None, /)
    | Return a copy of the string with trailing whitespace removed.
    |
    | If chars is given and not None, remove characters in chars instead.

  12. split(self, /, sep=None, maxsplit=-1)
    | Return a list of the substrings in the string, using sep as the separator string.
    |
    | sep
    | The separator used to split the string.
    | When set to None (the default value), will split on any whitespace character (including \n \r \t \f and spaces) and will discard empty strings from the result.
    | maxsplit
    | Maximum number of splits.
    | -1 (the default value) means no limit.
    |
    | Splitting starts at the front of the string and works to the end.
    |
    | Note, str.split() is mainly useful for data that has been intentionally delimited. With natural text that includes punctuation, consider using the regular expression module.
    39.1没有指定分隔依据的符号的时候,将使用whitespace作为分割依据。所谓的whitespace包括包括了 \n \r \t \f,在字符串中的表现分别是 换行 回车 制表 \f暂时不清楚,并且还会自动帮你去掉空字符串。非常nice。

>>> s = 'fly me to the moon'
>>> s.split()
['fly', 'me', 'to', 'the', 'moon']
>>> s = ' fly  me  to  the  moon  '
>>> s.split()
['fly', 'me', 'to', 'the', 'moon']

测试制表、换行、回车

>>> s=' fly\t me\n to\r the\f moon'
>>> s
' fly\t me\n to\r the\x0c moon'
>>> print(s)fly     methe moon
>>> print('\f')>>> s.split()
['fly', 'me', 'to', 'the', 'moon']
>>>

请注意,上面的两段话是不一样的。我们显示地写出来

fly空格me空格to空格the空格moon
空格空格fly空格空格me空格空格to空格空格the空格空格moon空格空格

当不传入参数的时候,实际上去掉了所有whitespace,并按每个whitespace作为分割标志去分割字符。
39.2最大分割符出现次数,默认是没有限制的,当然指定参数的情况下,会左边开始,优先分割

>>> s='everyting flows, here comes another new day'
>>> s.split( maxsplit=2)
['everyting', 'flows,', 'here comes another new day']
>>> s.split( maxsplit=3)
['everyting', 'flows,', 'here', 'comes another new day']
>>>

39.3注意到函数参数说明的“/”,说明self是位置参数,表明了调用函数的对象本身必须当作位置参数传入。之后的 sep和maxsplit都是默认参数。
我们不需要写出默认参数的名字,直接传入就可以了,注意哈,self自动传入,不占用位置,但是不想指明sep,只想指明maxsplit就可以如上调用,否则:

>>> s.split(2)
Traceback (most recent call last):File "<stdin>", line 1, in <module>
TypeError: must be str or None, not int

39.4我们当然可以指定分割符,它只能是一个字符串。
选择” “ 为句子的分割依据的时候,因为句子没有‘’所以会直接返回整个列表
选择’e’作为分割符号(依据)的时候,会把e直接变成’, '两个单引号,递归的走完整个字符串。

>>> s.split('*')
['everyting flows, here comes another new day']
>>> s.split('e')
['', 'v', 'ryting flows, h', 'r', ' com', 's anoth', 'r n', 'w day']
  1. splitlines(self, /, keepends=False)
    | Return a list of the lines in the string, breaking at line boundaries.
    |
    | Line breaks are not included in the resulting list unless keepends is given and true.

  2. startswith(…)
    | S.startswith(prefix[, start[, end]]) -> bool
    |
    | Return 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.

  3. strip(self, chars=None, /)
    | Return a copy of the string with leading and trailing whitespace removed.
    |
    | If chars is given and not None, remove characters in chars instead.

  4. swapcase(self, /)
    | Convert uppercase characters to lowercase and lowercase characters to uppercase.

  5. title(self, /)
    | Return a version of the string where each word is titlecased.
    |
    | More specifically, words start with uppercased characters and all remaining
    | cased characters have lower case.

  6. translate(self, table, /)
    | Replace each character in the string using the given translation table.
    |
    | table
    | Translation table, which must be a mapping of Unicode ordinals to
    | Unicode ordinals, strings, or None.
    |
    | The table must implement lookup/indexing via getitem, for instance a
    | dictionary or list. If this operation raises LookupError, the character is
    | left untouched. Characters mapped to None are deleted.

  7. upper(self, /)
    | Return a copy of the string converted to uppercase.

  8. zfill(self, width, /)
    | Pad a numeric string with zeros on the left, to fill a field of the given width.
    |
    | The string is never truncated.
    |
    | ----------------------------------------------------------------------

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

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

相关文章

3.x86游戏实战-寄存器

免责声明&#xff1a;内容仅供学习参考&#xff0c;请合法利用知识&#xff0c;禁止进行违法犯罪活动&#xff01; 本次游戏没法给 内容参考于&#xff1a;微尘网络安全 上一个内容&#xff1a;2.x86游戏实战-跨进程读取血量 寄存器说明&#xff1a; 寄存器是处理器的一部&…

Windows部署MinIO,搭建本地对象存储服务

一、前言 二、MinIO介绍 三、Windows部署MinIO服务 1、准备工作 2、下载MinIO服务 3、启动MinIO服务 4、设置用户名密码 5、创建.bat文件启动服务 四、MinIO基本操作 1、存储桶管理 2、对象管理 3、数据查看 一、前言 基于外网的项目&#xff0c;可以使用阿里云等…

ActiViz 9.3实战:ActiViz集成到WPF中的空域问题

文章目录 一、场景1、WPF控件2、集成ActiViz或者VTK二、问题1、需求2、空域问题三、解决方案1、用WindowsFormsHost包裹住ElementHost,然后将WPF的控件放在ElementHost职中:2、用Window或者Popup去悬浮3、使用第三方库Microsoft.DwayneNeed(这也是网上出现较多的答案)四、最…

石墨舟氮气柜的特点和使用要求介绍

石墨舟是一种在半导体、太阳能光伏等高科技产业中广泛使用的专用工具&#xff0c;主要由高纯度石墨材料制成。它的形状通常像一只船&#xff0c;因此得名“石墨舟”。石墨舟主要用于承载硅片或其他基板材料通过各种高温处理过程&#xff0c;是制造半导体器件和太阳能电池片的关…

MIX OTP——监督动态子进程

现在&#xff0c;我们已经成功定义了我们的监督器&#xff0c;它将作为应用程序生命周期的一部分自动启动&#xff08;和停止&#xff09;。 但请记住&#xff0c;我们的 KV.Registry 在 handle_cast/2 回调中同时链接&#xff08;通过 start_link&#xff09;和监控&#xff…

Spring4.3.x xml配置文件搜索和解析过程

###概述 这篇文章的研究不只是涉及到spring如何创建一个BeanDefinition对象&#xff0c;还涉及到spring如何加载文件、如何读取XML文件、以及我们在使用spring的时候如何扩展spring的配置。 spring在创建BeanFactory时会把xml配置文件和注解信息转换为一个个BeanDefinition对…

分享一个导出数据到 Excel 的解决方案

前言 许多业务场景下需要处理和分析大量的数据&#xff0c;而 Excel 是广泛使用的文件格式&#xff0c;几乎所有人都能打开和查看 Excel 文件&#xff0c;因此将数据库中的原始数据处理后&#xff0c;导出到 Excel 是一个很常见的功能&#xff0c;对于数据管理、分析、备份、展…

侯捷C++面向对象高级编程(上)-2-构造函数

1.inline函数 2.访问级别 3.构造函数 4.重载

《UDS协议从入门到精通》系列——图解0x38:请求上传

《UDS协议从入门到精通》系列——图解0x38&#xff1a;请求上传 一、简介二、数据包格式2.1 服务请求格式2.2 服务响应格式2.2.1 肯定响应2.2.2 否定响应 三、通信示例 Tip&#x1f4cc;&#xff1a;本文描述中但凡涉及到其他UDS服务的&#xff0c;将陆续提供链接跳转方式以便快…

新学期必备,录取情况统计如何制作?

暑假即将开始&#xff0c;新学期离我们又近了一步&#xff0c;老师们是不是在为如何高效统计录取情况而头疼呢&#xff1f;别担心&#xff0c;分享一个超实用的小技巧——使用易查分小程序的新建填表功能&#xff0c;让你的录取统计工作变得简单又高效&#xff01; 打开易查分小…

gin框架 HTML 模板加载,渲染 使用详解和总结

gin框架中默认的HTML模板渲染使用 LoadHTMLGlob() 或者 LoadHTMLFiles() &#xff0c; 这个地方如果是使用的LoadHTMLGlob() 这个方法的话是有坑的&#xff0c;即当你的模板文件放在不同的文件夹中时&#xff0c;使用这个方式加载会将文件夹也作为文件加载进去&#xff0c;从而…

G882磁力仪拖鱼位置是如何计算的?

根据参考文献&#xff0c;磁力仪拖鱼位置计算有两种方法&#xff1a; 1、直线法 直线计算法是假设不考虑海流、船摆等动态因素的影响&#xff0c;拖鱼与拖点始终和航向相同&#xff0c;即整个拖拽系统与船舶是刚性连接。 2、曲线法 实际海洋磁力测量中&#xff0c;在海风、海…

TP8 JS(html2canvas) 生成二维码并与背景图、文字组合生成分享海报

方法一&#xff1a;前端JS生成(推荐) 注意&#xff1a; 这个网页只能截图图片效果代码&#xff0c;其它任何html效果都不能有&#xff0c;不然截图就不准确 <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><t…

Windows宝塔面板部署ThinkPHP8.0创建Vue项目案例

安装ThinkPHP8.0 登录宝塔面板&#xff0c;创建一个站点。 输入composer代码&#xff0c;执行完成后自动创建TP目录 composer create-project topthink/think tp 网站目录设置为tp&#xff0c;运行目录设置为public 设置PHP版本为8.0以上&#xff0c;不然会出现下面的报错代…

软考 有向图 数据库之关系模式范式

假设有一个关系 R(A, B, C, D)&#xff0c;并且已知以下函数依赖&#xff1a; A → B B → C BC → D 求候选键? 求候选码? 候选键/候选码 是同一个概念. 数据库范式也分为1NF,2NF,3NF,BCNF,4NF,5NF。 https://cloud.tencent.com/developer/article/2055118 2NF在1NF的基础…

低代码平台技术及其在CRM系统中的应用

随着信息技术的飞速发展&#xff0c;企业对于高效、灵活、可定制的软件开发需求日益增长。在这一背景下&#xff0c;低代码平台&#xff08;Low-Code Platform, LCP&#xff09;技术应运而生&#xff0c;并以其快速开发、易于维护和高度定制化的特性&#xff0c;逐渐成为企业信…

visual studio 2022配置和使用protobuf

上图证明&#xff0c;我真的测了好多遍&#xff0c;测了好多版本的protobuf&#xff0c;花了很多时间。不过好在最后在vs2022上测通了。 下载protobuf 这里是protobuf下载的地址。 Releases protocolbuffers/protobuf GitHub 个人使用的3.21.9这个版本才跑通的。 1、首先…

FastAPI-Body、Field

参考&#xff1a;模式的额外信息 - 例子 - FastAPI 在FastAPI中&#xff0c;Body和Field是两个常用的注解&#xff0c;它们用于定义请求体中的数据或路径参数、查询参数等的处理方式。这两个注解都来自于Pydantic库&#xff0c;用于数据验证和解析&#xff0c;但它们的应用场景…

第6章_libmodbus使用

文章目录 第6章 libmodbus使用6.1 libmodbus开发库6.1.1 功能概要6.1.2 源码获取6.1.3 源码阅读1. 新建工程2. 同步文件3.打开工程4. 操作示例5. 快捷键 6.1.4 libmodbus与应用程序的关系 6.2 libmodbus源代码解析6.2.1 核心函数6.2.2 框架分析与数据结构6.2.3 情景分析1. 初始…

OOXML入门学习

进入-飞入 <par> <!-- 这是一个并行动画序列的开始。"par"代表并行&#xff0c;意味着在这个标签内的所有动画将同时开始。 --><cTn id"5" presetID"2" presetClass"entr" presetSubtype"4" fill"hold&…