fastjson转换时有大括号或者冒号或者有中括号_[Python Basic] 字符串处理以及类型转换 1...

String Manipulation & Typecasting (1)

1. 文本复制以及连接

1.1 Multiply sign

使用 multiply sigh/乘号* 来复制文本片段。

乘号复制文本举例:
print("Hi" * 3) # output: HiHiHi
print("*" * 10)# output:**********

1.2 连接

1.2.1 使用 plus sign 加号连接文本

加号连接文本举例:text1 = "I am"
text2 = "here" 
print(text1+ "空格" + text2)#output I am here

1.2.2使用 Comma sign 逗号连接文本

逗号连接文本举例:text1 = "I am"
text2 = "here" 
print(text1, text2)#output I am here
使用逗号和加号连接文本的区别在于,逗号连接文本在 python 中会自动加上空格

2.连接 string 字符串

2.1 使用 f-string 连接字符串

要打印字符串,你也可以使用Python的字符串格式,或者叫做 f-string。

英文:To print a string, you can also use Python's string formatting, or what is called f-strings.
f-string 输出字符串举例:
print(f'Hello World') #output: Hello World

2.1.1使用 f-string 连接变量

如果希望在字符串文本中包含打印变量,只需将变量括在左大括号和右大括号中

英文:If you want to include printing a variable inside your string literal, you just need to enclose your variable within an open curly bracket, and a close curly bracket.
f-string 输出变量举例:print(f'Hello World')
text1 = "I am"
text2 = "here"
print(f'Hi, {text1} {text2}') # output : Hi, I am here
注意: f-string 中,print 函数中的空格会被实际输出
使用 f-string, 能够让你的代码优雅且可读

3. 通过索引位置提取文本

通过引用文本从 LEFT 到 RIGHT 的索引位置,我们可以提取文本的任何部分

英文:We can extract any portion of a text, by >referencing to its index position from LEFT to >RIGHT.

如下我们将使用的例子:

hello jack 包含空格共 10 个字符位

58f7e99fbff6010a7dee917c42c6f7be.png

3.1 正序索引调用

使用左方括号和右方括号将索引括起来。 - 索引总是用一个左方括号和一个右方括号括起来。 - 从左侧开始的第一个索引位置总是 index 0 而不是 1。

英文:Use the open and close square brackets to enclose the index. Indexes are always enclosed by an open and a close square bracket. The first index position from the LEFT is always index 0 and NOT 1.
例子:
text = "Hello Jack"
print(text[0])# output: H  ## 因为大写 H 是字符串"Hello Jack" 从左数第一个字符print(text[4])# output: o  ## 同理小写 o 是字符串"Hello Jack" 从左数第4个字符

3.2 逆序索引调用

我们还可以通过"从右到左"引用文本的索引位置, 来提取文本的任何部分。 * 右边第一个位置是index -1。

英文:We can also extract any portion of a text, by referencing its index position from RIGHT to left instead. * The first position from the RIGHT is index -1.
例子:
text = "Hello Jack"
print(text[-1])# output : k## “k”是字符串 Hello Jack 从右开始索引的第一个字符    print(text[-9])# output : e## “e”是字符串 Hello Jack 从右开始索引的第 9 个字符

总结:

因此:正的索引位置从左开始,并从0、1、2、3、4、5 等开始, 而负的索引位置从右开始,并从-1、-2、-3、-4、-5、-6等开始.

英文: So, positive index positions start from the left, and start with 0, 1, 2, 3, 4, 5 and so on
while negative index positions start from the right, and start with -1, -2, -3 -4 -5, -6 and so on

3.3 提取部分字符串

For the same string, you can either use the positive indexes or negative indexes.

3.3.1 如何调取前五个字符

只需表述为”:5“即可

To extract the first 5 characters, put a colon BEFORE the index.
例子:
text = "Hello Jack" 
print(text[:5])# output: Hello##

3.3.2 如何提取后 3 个字符:

只需表述为:”-3:“

To extract the last 3 characters, put a colon AFTER the index, and use NEGATIVE
例子:
text = "Hello Jack" 
print(text[-3:])# output: ack##

3.3.3 如何提取字符串中的片段

我们还可以提取字符串文本的片段,方法是先放入一个起始索引,后跟冒号,然后放入一个结束索引。例如:print(text[6:10])

We can also slice a string literal, by putting a >starting index, followed by the colon, and then >putting an ending index.
  • 注意,输出包含起始索引,不包含结尾索引。 英文:Note that the starting index is inclusive, while the ending index is exclusive.

876266aca9e8a174885e260be20f9afe.png
正向提取例子:
text = "Hello Jack" 
print(text[6:10])# output: Jack## 输出文本6:10,将输出Jack,因为起始索引位置6是J字符,结束索引位置 10-1 是k字符。
如上的例子 10-1 索引, 如果片段的结束索引数字是10,那么意味 着片段中包含的最后一个索引位置数不是10,而是10-1,因为最后 一位索引位置是不包含在内的。
因此,请注意,在确定片段中包含的最后一个字符时,它始终是结束索引位置并减 1.
例如:
text1 = "Hello" 
print(text[2:4])# output: ll## 实际输出的是 第 2 到 3 位;即 4-1
再举例一个长的 12 位的字符串
text1 = "HelloTheWorld" 共 12 位置, 从 0 - 11 位 
print(text[8:12])# output: Worl## 实际输出的是 第 8 到 11 位;即 12-1

3.3.4 逆向提取片段

如果我们想通过从右向左索引来逆向提取片段,我们可以对索引使用负号,note! 同样,起始索引是包含的,而结束索引是不包含在内的。

Now, if we want to slice by counting from RIGHT to left instead, we can use the NEGATIVE sign for the index. Note that again the starting index is inclusive, while the ending index is exclusive.

7b42e4d604faa4faa3afdcb9ffcff99b.png
逆向索引提取例子:
text = "Hello Jack" 
print(text[-6:-9])# output: ell## 如上图所示:输出的是 -9 到 -7 的内容, 即 -9对应字母 e, -6减去 1 等于 -7 对应字母 l.

3.3.5 区域提取

我们还可以通过只放一个起始索引,后跟冒号,而不放结束索引来分割字符串文字

We can also slice a string literal, by putting only a starting index, followed by the colon, and NOT putting an ending index

b354cbfd79e4b0a46cbdadbaccf8c52f.png

``` 正向区域索引提取例子: text = "Hello Jack" print(text[4:])

# output: o Jack
## 如上图所示: 从左往右索引,因为起始索引位置4是 o 字符,而且由于我们不放结束索引,所以它将包含字符串文字的最后一个字符,即 k 字符。
![](media/15783570801942/15816953873062.jpg)

逆向区域索引提取例子: text = "Hello Jack" print(text[-4:])

# output: Jack
## 如上图所示,因为起始索引位置 -4 是 J 字符,而且由于们不放结束索引,所以它将包含直到字符串的最后一个字符,即 k 字符。

```

完毕, 待总结。

词汇:

  1. multiply sign 乘号
  2. concatenate text to join them together 翻译:将文本连接在一起
  3. open and close curly brackets 大括号
  4. square bracket 方括号

发布时间: 2020 年 2 月 15日

知乎链接: 字符串处理以及类型转换 1

当前可任意转载,转载请保存以上信息即可。无需获得授权.

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

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

相关文章

Java IdentityHashMap size()方法与示例

IdentityHashMap类的size()方法 (IdentityHashMap Class size() method) size() method is available in java.util package. size()方法在java.util包中可用。 size() method is used to return the size (i.e. How many key-value pair exists) of this IdentityHashMap. siz…

读《深入分析Java Web技术内幕》

这里这本书的预读章节,看完预读部分,解答了一些疑惑,也相信这是一本夯实Java Web架构体系的好书。 HTTP协议解析 开发一般使用firefox的firebug调试,这的确是一个利器,HTTP的请求头响应头一目了然。 浏览器缓存机制 当…

windows mobile多国语言实现[转]

介绍一种多国语言的实现办法,这也是微软推荐的方式,打开windows mobile下的windows目录可以看到有很多以MUI为后缀名的文件,例如shellres.dll.0804.mui、shell.dll.0804.mui。。。。。。我们可以用eXeScope.exe或者resources hacker这样的文件…

RTSP协议基本分析

目录一、介绍二、RTSP与HTTP三、RTSP推流基本过程1、OPTION 查询服务器端可用方法1.1、Client 请求1.2、Server 回复2、ANNOUNCE 发送媒体描述信息2.1、Client 请求2.2、Server 回复3、SETUP建立RTSP会话3.1、Client 请求(视频流)3.2、Server 回复&#…

找取照片上的25个特征点,并保存结果

找取照片上的25个特征点,并保存结果 import numpy as np import cv2 from matplotlib import pyplot as plt img cv2.imread(E:\Python-workspace\OpenCV\OpenCV/water1.png,1)#第一个参数为选择照片的路径,注意照片路径最后一个为正斜杠其他都为反斜杠…

nutsdb与mysql_分享下 nutsdb 单机 1 亿、10 亿数据实测

大家好, 想给大家分享下我最近为 nutsdb 做的数据测试。测试项目起因事情起因是这个 issue ,简单说就是内存高了,不够用了。可能很多人不知道 NutsDB。简单介绍下,NutsDB 是我几个月以前开源的一个 Go 语言编写的内嵌型 KV 数据库…

java 方法 示例_带有示例的Java EnumSetSupplementOf()方法

java 方法 示例EnumSet类complementOf()方法 (EnumSet Class complementOf() method) complementOf() method is available in java.util package. clipartOf()方法在java.util包中可用。 complementOf() method is used to contain all the elements of this EnumSet that are…

在需要时开启Perl新特性

从5.10开始,新特性必须开启才能使用。Perl默认不启用新特性保持向后兼容。 如果想启用新特性,可以使用新的-E开关。打开所有的新特性。 % perl5.10.1 -E say.pl #开启5.10.1 版本的所有新特性 在源代码中使用 use 指令之后指定perl版本号就可以了。 use …

P2P技术详解(一):NAT详解——详细原理、P2P简介

目录1. IPv4协议和NAT的由来2. NAT的工作模型和特点2.1、NAT的概念模型2.2、一对一的NAT2.3、一对多的NAT2.4、按照NAT端口映射方式分类2.4.1全锥形NAT2.4.2限制锥形NAT2.4.3端口限制锥形NAT2.4.4对称型NAT3. NAT的限制与解决方案3.1、IP端到端服务模型3.2、NAT的弊端3.3、NAT穿…

决定孩子命运的八大关键问题

你可以不是天才,但你可以是天才的父母!树立做父母正确的家庭教育观念,为孩子建造一个良好的人生平台,让孩子有很好的人格修养,懂得做人,懂得成功的真正含义。简单方便,容易操作,适合…

java calendar_Java Calendar internalGet()方法与示例

java calendar日历类internalGet()方法 (Calendar Class internalGet() method) internalGet() method is available in java.util package. internalGet()方法在java.util包中可用。 internalGet() method is used to get the value of the given field(fi) of this Calendar …

显示照片的二维直方图

显示照片的二维直方图 import cv2 from matplotlib import pyplot as plt img cv2.imread(E:\Python-workspace\OpenCV\OpenCV/water1.png,1)#第一个参数为选择照片的路径,注意照片路径最后一个为正斜杠其他都为反斜杠;第二个参数,其中1表示…

周五怎么表示 mysql_完美起航-MySQL找每个月最后一个星期五--函数定义与使用

数据库作业有一道题是这样子的:有一张名叫emp的表记录员工信息,其中有如下字段 HIREDATE 表示员工被雇用的日期:然后问题是这样的:q7.Show details of employee hiredates and the date of their first payday.(Paydays occur on…

要想能安心,必须先死心。

其实,不论是感情,还是学习、工作还是生活,不都是如此?曾经年少怀抱一个名校梦,如果高考不成功,那么你一定会选择考研让自己死一次心;小时候特别喜欢 某个职业,长大了你抛弃所有机会追…

silverlight学习总结【完】

以下内容是个人理解,不保证正确性。且假设使用C#,并且有一定的相关知识和XML基础。 silverlight是什么,能做什么 silverlight用XAML来做前端界面,用.NET或者JS作为程序脚本支持,在浏览器内外运行的应用。可以认为和FLA…

P2P技术详解(二):P2P中的NAT穿越(打洞)方案详解

目录1、内容概述2、反向链接技术:一种特殊的P2P场景(通信双方中只有一方位于NAT设备之后)3、基于UDP协议的P2P打洞技术详解3.1、原理概述3.2、典型P2P情景1: 两客户端位于同一NAT设备后面(即相同内网中)3.3…

Java Byte类的compareTo()方法和示例

简短的类compareTo()方法 (Short class compareTo() method) compareTo() method is available in java.lang package. compareTo()方法在java.lang包中可用。 compareTo() method is used to check equality or inequality for this Byte object against the given Byte objec…

显示照片的RGB直方图

显示照片的RGB直方图 import numpy as np import cv2 as cv from matplotlib import pyplot as plt img cv.imread(E:\Python-workspace\OpenCV\OpenCV/BEYOND.png,1)#第一个参数为选择照片的路径,注意照片路径最后一个为正斜杠其他都为反斜杠;第二个参…

OUT还开通博客!

现在哪有人还在玩博客哦,哎试试,记录一下自己开发网站的点滴吧!转载于:https://www.cnblogs.com/17say/archive/2013/02/18/2915125.html

网站V5的一些想法(转)

V5即将到来,面对“全新”的V5,前端这块自然也要借这次改版的机会,将我们前端的一些想法实践到V5中去,实现一次跨越。 1 尝试模块化的代码书写(html、css等) 模块化的目的是为了提高代码的重用性、扩展性、可维护性 2 文件引用使用…