在Python中比较字符串

A string is a very useful and popular variable type used in the Python programming language. Sometimes we need to operate two or more strings and compare them. Comparing numbers is easy but the string is a bit different and harder. In this tutorial, we will look at different comparison operations on Python strings.

字符串是Python编程语言中非常有用且流行的变量类型。 有时我们需要操作两个或多个字符串并进行比较。 比较数字很容易,但是字符串有点不同并且更难。 在本教程中,我们将研究对Python字符串的不同比较操作。

查找更大的字符串 (Find Bigger String)

Two numbers can be compared in order to find the bigger one but how can we find a bigger string. Strings are consist of multiple characters and evaluated according to these multiple characters. Comparing two string means comparing the ASCII values of each character one by one. For example:

可以比较两个数字以找到更大的数字,但是如何找到更大的字符串。 字符串由多个字符组成,并根据这些多个字符进行评估。 比较两个字符串表示一个一个地比较每个字符的ASCII值。 例如:

a='abc'

b='abd'

b > a
Find Bigger String
Find Bigger String
查找更大的字符串

These two strings are very similar but the third character is different for both. If we compare these two strings b will be bigger than a the variable because of d ASCII value is bigger than c ASCII value. And as a result, a boolean value True is returned.

这两个字符串非常相似,但是第三个字符却不同。 如果我们比较这两个字符串,则b将大于a变量,因为d ASCII值大于c ASCII值。 结果,返回布尔值True

检查是否与==运算符相同 (Check If Same with == Operator)

The most popular comparison operation is checking the two strings if they are the same. We will use == operator in order to check equality.

最受欢迎的比较操作是检查两个字符串是否相同。 我们将使用==运算符来检查相等性。

a='abc' 
b='abd' 
a == b 
#False 
a = 'abd' 
a == b    
#True
Check If Same
Check If Same
检查是否相同

检查是否与运算符相同(Check If Same with is Operator)

Python programming language also provides is operator to check given objects are the same. We can use is operator in order to check if given two string is the same which means two string provides the same characters in the same order.

Python编程语言也提供了is运营商咨询是否给予对象是相同的。 我们可以使用is运算符来检查给定的两个字符串是否相同,这意味着两个字符串以相同的顺序提供相同的字符。

a='ismail'
b='poftut'
c='ismail'

a is b
#False

b is a
#False

a is c
#True

c is a
#True
Check If Same with is Operator
Check If Same with is Operator
检查是否与运算符相同

Check If Same with is Operator

检查是否与运算符相同

检查是否与!=运算符不同(Check If Different with != Operator)

The reverse of checking equality is checking if two strings are different. If the strings are different from each other this will return boolean True . We will use != operator for these operations.

检查相等性的相反操作是检查两个字符串是否不同。 如果字符串彼此不同,则将返回布尔True 。 我们将使用!=运算符进行这些操作。

a = 'abd' 
b = 'abd' 
a != b 
#False 
b = 'abc' 
a != b    
#True
Check If Different
Check If Different
检查是否不同

检查字符串是否为空(Check If String Empty)

Strings can provide different characters but also can contain no value or just spaces. We can check if a string is empty or not by using strip function. We will strip spaces from the string and check equality with an empty string literal like below.

字符串可以提供不同的字符,但也可以不包含任何值或仅包含空格。 我们可以使用strip函数检查字符串是否为空。 我们将删除字符串中的空格,并使用如下所示的空字符串文字检查是否相等。

a = 'abc' 
b = ' ' 
b.strip() == '' 
#True 
a.strip() == ''  
#False
Check If String Empty
Check If String Empty
检查字符串是否为空

We can also use the string with the if keyword. If the string has a value different than space or empty the if will get a True boolean value.

我们还可以将字符串与if关键字一起使用。 如果字符串的值与空格不同或为空,则if将获得True布尔值。

a = 'abc'       
b = ' '         
if b: 
   print("Empty") 
 
#Empty 

if a: 
   print("Not empty") 
 
#Not empty
Check If String Empty
Check If String Empty
检查字符串是否为空

比较不区分大小写的字符串(Compare String Case Insensitive)

In some cases, we may have strings those need to be compared in a case insensitive manner. We can use some function provided by the Python string type like lower() and upper(). In this example, we will lower all provided strings and compare them with == and != operators.

在某些情况下,我们可能有一些字符串需要以不区分大小写的方式进行比较。 我们可以使用Python字符串类型提供的某些函数,例如lower()upper() 。 在此示例中,我们将降低所有提供的字符串,并将它们与==和!=运算符进行比较。

a='isMail'
b='Poftut'
c='iSmaiL'

a.lower() == b.lower()
#False

a.lower() != b.lower()
#True

a.lower() != c.lower()
#False

a.lower() == c.lower()
#True

b.lower() == c.lower()
#False
Compare String Case Insensitive
Compare String Case Insensitive
比较不区分大小写的字符串
LEARN MORE  Python Not Boolean Operator Tutorial
了解更多Python非布尔运算符教程

翻译自: https://www.poftut.com/comparing-strings-python/

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值