Python基础知识部分——字符串

目录

字符串的拼接

字符串长度获取

大小写转换

去除字符串首尾空格

字符串查找

字符串替换

字符串分割


字符串在几乎所有编程语言中都是最基本,也是最常用的数据类型之一,绝大多数程序的开发中,都会涉及到字符串的处理和应用。

下面主要学习和掌握 Python 字符串的基本操作,主要内容包括字符串的拼接、字符转换、字符串首尾空格去除以及字符串查找与替换等操作。

字符串的拼接

Python 使用 +来合并两个字符串,这种合并字符串的方法叫做拼接。

其基本语法如下:

  • result_string = source_string1 + source_string2

其中,

  • source_string1为待合并的第一个字符串;
  • source_string2为待合并的第二个字符串;
  • result_string为合并后的字符串。

 

注意:如果需要,在两个字符串之间,可以增加相应的空格。

 

例如,将姓氏和名字拼接成全名:

# coding=utf-8

# 将姓氏和名字分别保存在两个变量中
first_name = 'Zhang'
last_name = 'san'

# 将姓氏和名字拼接,将结果存储在full_name变量中
full_name = first_name + " " + last_name
print(full_name)

输出结果:Zhang san

 

字符串长度获取

Python 提供了 len() 函数来计算,并返回字符串的长度,即字符串中单个元素的个数。

其基本语法如下:

 length = len(target_string)

其中:

  • target_string: 目标字符串变量;
  • length: 保存字符串长度的变量;
  • len: 获取字符串长度的语法关键词。

 

下面给出了具体的使用示例:

# coding=utf-8

# 创建一个字符串变量,获取其长度并打印出来
color = 'It is red'
length = len(color)
print (length)

#直接在len函数中引入字符串内容获得其长度,然后打印出来
print(len('This is a circle!'))

输出结果:

9
17

注意: 从输出结果可以看到,空格也占一个字符元素的位置

 

大小写转换

Python 提供了 upper() 和 lower() 方法,来对字符串进行大小写转换。

其中,upper() 会将字符串中的所有字符都转换为大写,lower() 则将所有字符转换为小写。

除此之外,Python 还贴心的提供了 title() 方法,将字符串所有单词的首字母变成大写,而其他字母依然小写。

 

各个方法的具体语法如下:

  • # 将源字符串转换为大写并存入upper_string变量
  • upper_string = source_string.upper()
  •  
  • # 将源字符串转换为小写并存入lower_string变量
  • lower_string = source_string.lower()
  •  
  • # 将源字符串每个词首字母转换为大写并存入title_string变量
  • title_string = source_string.title()

 

其中, source_string:待处理的源字符串,具体使用示例如下:

# coding=utf-8

# 创建一个字符串say_hello
say_hello = 'Dear my Daughter'

# 使用upper()方法对say_hello字符串进行处理
upper_say_hello = say_hello.upper()

# 使用lower()方法对say_hello字符串进行处理
lower_say_hello = say_hello.lower()

# 使用title()方法对say_hello字符串进行处理
title_say_hello = say_hello.title()

# 打印输出四个字符串
print (say_hello+"\n")
print (upper_say_hello+"\n")
print (lower_say_hello+"\n")
print (title_say_hello+"\n")

输出结果:

Dear my Daughter
DEAR MY DAUGHTER
dear my daughter
Dear My Daughter

 

注意:由上述打印结果可以看出,上述方法的调用,并不会对原始的 say_hello字符串产生影响,转换后的字符串会存入新的变量中。

 

去除字符串首尾空格

Python 提供了 strip() 方法,可以去除字符串两侧(不包含内部)全部的空格。使用该方法,也可以通过指定参数,去除两侧指定的特定字符。

注意:在指定参数时,如果参数是多个字符,则该方法会将多个字符逐个去比对,进行删除(区分大小写),直到首尾两侧没有匹配的字符为止。但是,该方法对字符串中间的字符没有影响。

 

其基本语法如下:

  • strip_string1 = source_string.strip()
  • string_strip2 = source_string.strip(target_char)

其中:

  • source_string:待处理的源字符串;
  • strip_string1和 strip_string2:处理后的字符串;
  • target_char:需要从源字符串首尾去除的特定字符。

 

具体使用示例如下:

# coding = utf-8

# 创建一个字符串hello_world
hello_world = '  **The world ** is big!*    '

# 利用strip()方法处理hello_world字符串
blank_hello_world = hello_world.strip()
char_hello_world = hello_world.strip('TH *')

# 打印输出转换后的字符串
print(blank_hello_world)
print(char_hello_world)

输出结果:

**The world ** is big!* 
he world ** is big!

输出结果分析:

  • 从第一行打印结果可以看到,strip() 方法去除了源字符串首尾的 所有空格,但是并没有去除字符串中间的 空格;
  • 从第二行打印结构可以看出,strip() 方法将源字符串首尾所有 空格、 *以及字符 T去掉了。而源字符串中头部的 h因为是小写并没有去除。

 

字符串查找

Python 提供了内置的字符串查找方法 find() ,利用该方法可以在一个较长的字符串中查找子字符串。

如果该字符串中,有一个或者多个子字符串,则该方法返回第一个子串所在位置的最左端索引;若没有找到符合条件的子串,则返回 -1。

find()方法的基本使用语法如下:

 source_string.find(sub_string)

其中:

  • source_string:源字符串;
  • sub_string:待查的目标子字符串;
  • find:字符串查找方法的语法关键字。

 

例如,在一个字符串中,查找两个单词的位置:

# coding=utf-8

# 创建一个字符串
source_string = 'The past is gone and static'

# 查看"past"在source_string字符串中的位置
print(source_string.find('past'))

# 查看"love"在source_string字符串中的位置
print(source_string.find('love'))

输出结果:

4
-1

 

**注意:查找的字符应该在单引号或双引号内

 

字符串替换

Python 提供了 replace() 方法,用以替换给定字符串中的子串,其基本使用语法如下:

  • source_string.replace(old_string, new_string)

其中:

  • source_string:待处理的源字符串;
  • old_string:被替换的旧字符串;
  • new_string:替换的新字符串;
  • replace:字符串替换方法的语法关键词。

 

例如,在如下字符串中,用 small 子串替换 big 子串。

# coding = utf-8

# 创建一个字符串circle
source_string = 'The world is big'

# 利用replace()方法用子串"small"代替子串"big"
print(source_string.replace('big','small'))

输出结果: The world is small

 

字符串分割

Python 提供了 split() 方法实现字符串分割。该方法根据提供的分隔符,将一个字符串分割为字符列表,如果不提供分隔符,则程序会默认把空格(制表、换行等)作为分隔符。其基本使用语法如下:

 source_string.split(separator)

其中,

  • source_string:待处理的源字符串;
  • separator:分隔符;
  • split:字符串分割方法的关键词。

 

例如,用 +、 /还有空格作为分隔符,分割字符串。

# coding = utf-8

# 待处理字符串source_string
source_string = '1+2+3+4+5'

# 利用split()方法,按照`+`和`/`对source_string字符串进行分割
print(source_string.split('+'))
print(source_string.split('/'))

输出结果:

['1', '2', '3', '4', '5']
['1+2+3+4+5']

**注意:

source_string = " Hello,world!"

print(source_string.split(" "))

 

source_string = " Hello,world!"

print(source_string.split())

两种写法的输出格式是不同的,前一种被分割成了3部分(第一个空格被单独划分为一部分),后一种被分割成了2部分

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值