Python 字符串

原文: https://thepythonguru.com/python-strings/


于 2020 年 1 月 10 日更新


python 中的字符串是由单引号或双引号分隔的连续字符系列。 Python 没有任何单独的字符数据类型,因此它们表示为单个字符串。

创建字符串


  1. >>> name = "tom" # a string
  2. >>> mychar = 'a' # a character

您还可以使用以下语法创建字符串。

  1. >>> name1 = str() # this will create empty string object
  2. >>> name2 = str("newstring") # string object containing 'newstring'
  1. name = "tom" # a string
  2. mychar = 'a' # a character
  3. print(name)
  4. print(mychar)
  5. name1 = str() # this will create empty string object
  6. name2 = str("newstring") # string object containing 'newstring'
  7. print(name1)
  8. print(name2)

Python 中的字符串是不可变的


这对您而言意味着,一旦创建了字符串,便无法对其进行修改。 让我们以一个例子来说明这一点。

  1. >>> str1 = "welcome"
  2. >>> str2 = "welcome"

这里str1str2指的是存储在内存中某个位置的相同字符串对象“welcome”。 您可以使用id()函数测试str1是否与str2引用相同的对象。

什么是身份证?

python 中的每个对象都存储在内存中的某个位置。 我们可以使用id()获得该内存地址。

  1. >>> id(str1)
  2. 78965411
  3. >>> id(str2)
  4. 78965411

由于str1str2都指向相同的存储位置,因此它们都指向同一对象。

让我们尝试通过向其添加新字符串来修改str1对象。

  1. >>> str1 += " mike"
  2. >>> str1
  3. welcome mike
  4. >>> id(str1)
  5. >>> 78965579

如您现在所见,str1指向完全不同的内存位置,这证明了并置不会修改原始字符串对象而是创建一个新的字符串对象这一点。 同样,数字(即int类型)也是不可变的。

试试看:

  1. str1 = "welcome"
  2. str2 = "welcome"
  3. print(id(str1), id(str2))
  4. str1 += " mike"
  5. print(str1)
  6. print(id(str1))

字符串操作


字符串索引从0开始,因此要访问字符串类型中的第一个字符:

  1. >>> name[0] #
  2. t

试一试:

  1. name = "tom"
  2. print(name[0])
  3. print(name[1])

+运算符用于连接字符串,而*运算符是字符串的重复运算符。

  1. >>> s = "tom and " + "jerry"
  2. >>> print(s)
  3. tom and jerry
  1. >>> s = "spamming is bad " * 3
  2. >>> print(s)
  3. 'spamming is bad spamming is bad spamming is bad '

试一试:

  1. s = "tom and " + "jerry"
  2. print(s)
  3. s = "spamming is bad " * 3
  4. print(s)

字符串切片


您可以使用[]运算符(也称为切片运算符)从原始字符串中提取字符串的子集。

语法s[start:end]

这将从索引start到索引end - 1返回字符串的一部分。

让我们举一些例子。

  1. >>> s = "Welcome"
  2. >>> s[1:3]
  3. el

一些更多的例子。

  1. >>> s = "Welcome"
  2. >>>
  3. >>> s[:6]
  4. 'Welcom'
  5. >>>
  6. >>> s[4:]
  7. 'ome'
  8. >>>
  9. >>> s[1:-1]
  10. 'elcom'

试一试:

  1. s = "Welcome"
  2. print(s[1:3])
  3. print(s[:6])
  4. print(s[4:])
  5. print(s[1:-1])

注意

start索引和end索引是可选的。 如果省略,则start索引的默认值为0,而end的默认值为字符串的最后一个索引。

ord()chr()函数


ord()-函数返回字符的 ASCII 码。

chr()-函数返回由 ASCII 数字表示的字符。

  1. >>> ch = 'b'
  2. >>> ord(ch)
  3. 98
  4. >>> chr(97)
  5. 'a'
  6. >>> ord('A')
  7. 65

试一试:

  1. ch = 'b'
  2. print(ord(ch))
  3. print(chr(97))
  4. print(ord('A'))

Python 中的字符串函数


函数名称 函数说明
len () 返回字符串的长度
max() 返回具有最高 ASCII 值的字符
min() 返回具有最低 ASCII 值的字符
  1. >>> len("hello")
  2. 5
  3. >>> max("abc")
  4. 'c'
  5. >>> min("abc")
  6. 'a'

试一试:

  1. print(len("hello"))
  2. print(max("abc"))
  3. print(min("abc"))

innot in运算符


您可以使用innot in运算符检查另一个字符串中是否存在一个字符串。 他们也被称为会员运营商。

  1. >>> s1 = "Welcome"
  2. >>> "come" in s1
  3. True
  4. >>> "come" not in s1
  5. False
  6. >>>

试一试:

  1. s1 = "Welcome"
  2. print("come" in s1)
  3. print("come" not in s1)

字符串比较


您可以使用[><<=<===!=)比较两个字符串。 Python 按字典顺序比较字符串,即使用字符的 ASCII 值。

假设您将str1设置为"Mary"并将str2设置为"Mac"。 比较str1str2的前两个字符(MM)。 由于它们相等,因此比较后两个字符。 因为它们也相等,所以比较了前两个字符(rc)。 并且因为r具有比c更大的 ASCII 值,所以str1大于str2

这里还有更多示例:

  1. >>> "tim" == "tie"
  2. False
  3. >>> "free" != "freedom"
  4. True
  5. >>> "arrow" > "aron"
  6. True
  7. >>> "right" >= "left"
  8. True
  9. >>> "teeth" < "tee"
  10. False
  11. >>> "yellow" <= "fellow"
  12. False
  13. >>> "abc" > ""
  14. True
  15. >>>

试一试:

  1. print("tim" == "tie")
  2. print("free" != "freedom")
  3. print("arrow" > "aron")
  4. print("right" >= "left")
  5. print("teeth" < "tee")
  6. print("yellow" <= "fellow")
  7. print("abc" > "")

使用for循环迭代字符串


字符串是一种序列类型,也可以使用for循环进行迭代(要了解有关for循环的更多信息,请单击此处)。

  1. >>> s = "hello"
  2. >>> for i in s:
  3. ... print(i, end="")
  4. hello

注意

默认情况下,print()函数用换行符打印字符串,我们通过传递名为end的命名关键字参数来更改此行为,如下所示。

  1. print("my string", end="\n") # this is default behavior
  2. print("my string", end="") # print string without a newline
  3. print("my string", end="foo") # now print() will print foo after every string

试一试:

  1. s = "hello"
  2. for i in s:
  3. print(i, end="")

测试字符串


python 中的字符串类具有各种内置方法,可用于检查不同类型的字符串。

方法名称 方法说明
isalnum() 如果字符串是字母数字,则返回True
isalpha() 如果字符串仅包含字母,则返回True
isdigit() 如果字符串仅包含数字,则返回True
isidentifier() 返回True是字符串是有效的标识符
islower() 如果字符串为小写,则返回True
isupper() 如果字符串为大写则返回True
isspace() 如果字符串仅包含空格,则返回True
  1. >>> s = "welcome to python"
  2. >>> s.isalnum()
  3. False
  4. >>> "Welcome".isalpha()
  5. True
  6. >>> "2012".isdigit()
  7. True
  8. >>> "first Number".isidentifier()
  9. False
  10. >>> s.islower()
  11. True
  12. >>> "WELCOME".isupper()
  13. True
  14. >>> " \t".isspace()
  15. True

试一试:

  1. s = "welcome to python"
  2. print(s.isalnum())
  3. print("Welcome".isalpha())
  4. print("2012".isdigit())
  5. print("first Number".isidentifier())
  6. print(s.islower())
  7. print("WELCOME".isupper())
  8. print(" \t".isspace())

搜索子串


方法名称 方法说明
endwith(s1: str): bool 如果字符串以子字符串s1结尾,则返回True
startswith(s1: str): bool 如果字符串以子字符串s1开头,则返回True
count(s: str): int 返回字符串中子字符串出现的次数
find(s1): int 返回字符串中s1起始处的最低索引,如果找不到字符串则返回-1
rfind(s1): int 从字符串中s1的起始位置返回最高索引,如果找不到字符串则返回-1
  1. >>> s = "welcome to python"
  2. >>> s.endswith("thon")
  3. True
  4. >>> s.startswith("good")
  5. False
  6. >>> s.find("come")
  7. 3
  8. >>> s.find("become")
  9. -1
  10. >>> s.rfind("o")
  11. 15
  12. >>> s.count("o")
  13. 3
  14. >>>

试一试:

  1. s = "welcome to python"
  2. print(s.endswith("thon"))
  3. print(s.startswith("good"))
  4. print(s.find("come"))
  5. print(s.find("become"))
  6. print(s.rfind("o"))
  7. print(s.count("o"))

转换字符串


方法名称 方法说明
capitalize(): str 返回此字符串的副本,仅第一个字符大写。
lower(): str 通过将每个字符转换为小写来返回字符串
upper(): str 通过将每个字符转换为大写来返回字符串
title(): str 此函数通过大写字符串中每个单词的首字母来返回字符串
swapcase(): str 返回一个字符串,其中小写字母转换为大写,大写字母转换为小写
replace(old, new): str 此函数通过用新字符串替换旧字符串的出现来返回新字符串
  1. s = "string in python"
  2. >>>
  3. >>> s1 = s.capitalize()
  4. >>> s1
  5. 'String in python'
  6. >>>
  7. >>> s2 = s.title()
  8. >>> s2
  9. 'String In Python'
  10. >>>
  11. >>> s = "This Is Test"
  12. >>> s3 = s.lower()
  13. >>> s3
  14. 'this is test'
  15. >>>
  16. >>> s4 = s.upper()
  17. >>> s4
  18. 'THIS IS TEST'
  19. >>>
  20. >>> s5 = s.swapcase()
  21. >>> s5
  22. 'tHIS iS tEST'
  23. >>>
  24. >>> s6 = s.replace("Is", "Was")
  25. >>> s6
  26. 'This Was Test'
  27. >>>
  28. >>> s
  29. 'This Is Test'
  30. >>>

试一试:

  1. s = "string in python"
  2. s1 = s.capitalize()
  3. print(s1)
  4. s2 = s.title()
  5. print(s2)
  6. s = "This Is Test"
  7. s3 = s.lower()
  8. print(s3)
  9. s4 = s.upper()
  10. print(s4)
  11. s5 = s.swapcase()
  12. print(s5)
  13. s6 = s.replace("Is", "Was")
  14. print(s6)
  15. print(s)

在下一章中,我们将学习 python 列表