国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

python中字符串比較使用is、==和cmp()總結

2020-02-22 23:29:51
字體:
來源:轉載
供稿:網友

經常寫 shell 腳本知道,字符串判斷可以用 =,!= 數字的判斷是 -eq,-ne 等,但是 Python 確不是這樣子的。

所以作為慢慢要轉換到用 Python 寫腳本,這些基本的東西必須要掌握到骨子里!

在 Python 中比較字符串最好是使用簡單邏輯操作符。

例如,確定一個字符串是否和另外一個字符串匹配。正確的,你可以使用 is equal 或 == 操作符。你也可以使用例如 >= 或 < 來確定幾個字符串的排列順序。

從官方文檔上看

The operators ``is`` and ``is not`` test for object identity: ``x isy`` is true if and only if *x* and *y* are the same object. ``x isnot y`` yields the inverse truth value. cmp(...) cmp(x, y) -> integer  Return negative if x<y, zero if x==y, positive if x>y.

也就是說 is 用來判斷是否是同一個對象,is 是種很特殊的語法,你在其它的語言應該不會見到這樣的用法。

python is 主要是判斷 2 個變量是否引用的是同一個對象,如果是的話,則返回 true,否則返回 false。
判斷數字相等不要用 is 操作符

>>> a = 256>>> b = 256>>> id(a)9987148>>> id(b)9987148>>> a = 257>>> b = 257>>> id(a)11662816>>> id(b)11662828

為什么兩次 is 返回的是不同結果?不是應該都是 true 嗎?

因為 string pooling (或叫intern)。 is 相等代表兩個對象的 id 相同(從底層來看的話,可以看作引用同一塊內存區域)。 至于為什么 “ABC” 被 intern 了而 “a bc” 沒有,這是 Python 解析器實現決定的,可能會變。

== 用來判斷兩個對象的值是否相等(跟 Java 不同,Java 中 == 用來判斷是否是同一個對象)。

今天我用 == 來判斷兩個 IP 地址 字符串是否相同。

#!/usr/bin/python strtmp = '192.169.1.161'file_object = open(r'public_ip.txt')try: all_the_text = file_object.readlines() firstline = all_the_text[0].rstrip()finally: file_object.close() #print firstline #if strtmp == firstline:s = (strtmp is firstline)print sif (strtmp is firstline): print 'yes'else: print 'no'

來個簡單點的例子:

#-*-conding:utf-8-*-i='xinwen';m=input();if i==m: print('yes');else: print('no'); input();

在 if 判斷語句中非常有用吶!

#!/usr/bin/python# Filename: if.py number = 23guess = int(raw_input('Enter an integer : ')) if guess == number: print 'Congratulations, you guessed it.' # New block starts here print "(but you do not win any prizes!)" # New block ends hereelif guess < number: print 'No, it is a little higher than that' # Another block # You can do whatever you want in a block ...else: print 'No, it is a little lower than that' # you must have guess > number to reach here print 'Done'# This last statement is always executed, after the if statement is executed            
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 三明市| 县级市| 离岛区| 来宾市| 桑植县| 莱西市| 吴川市| 澜沧| 新安县| 新宁县| 古丈县| 寿阳县| 新安县| 珲春市| 昌乐县| 虞城县| 从化市| 珠海市| 沁源县| 和静县| 湘乡市| 双城市| 通渭县| 大冶市| 黑龙江省| 健康| 海南省| 彩票| 孝感市| 丰台区| 兰州市| 安吉县| 兴城市| 黄石市| 彰武县| 新营市| 洛宁县| 漳浦县| 桃江县| 枣阳市| 枣阳市|