『壹』 數組判斷相等python怎麼寫
import numpy as np
a = np.array([1,2,3])
b = np.array([1,2,3])
print((a==b).all())
a = np.array([3,2,1])
b = np.array([1,2,3])
print((a==b).all())
可以用第三方庫吧? 抄的。再加上計數,隨機數列表就行了。
『貳』 python怎麼比較兩個字元串相等
可以直接使用python的內建函數cmp():s1='hello'
s2='hell'
s3='helloworld'
s4='hello'
cmp(s1,s2)
#輸出結果為1
cmp(s1,s3)
#輸出結果為-1
cmp(s1,s4)
#輸出結果為0
『叄』 python怎麼表示兩個字元串相等
以前有過類似的問題 可以參考下:
https://..com/question/366221254648267252.html
『肆』 求一個python的路徑對比方法,判斷路徑是否相等,是否包含
#coding=utf-8
'''
Createdon2014-11-17
@author:Neo
'''
#0:equal
#1:path1issubfolderofpath2
#-1:path2issubfolderofpath1
#2:unrelated
defcomparePath(path1,path2):
ifnotpath1ornotpath1:
return2
path1Len=len(path1)
path2Len=len(path2)
ifpath1Len>path2Len:
longPath=path1
shortPath=path2
cmpFator=1
else:
longPath=path2
shortPath=path1
cmpFator=-1
shortPathLen=len(shortPath)
longPathLen=len(longPath)
i=0
j=0
whilei<shortPathLenandj<longPathLen:
c1=shortPath[i]
c2=longPath[j]
ifisSlash(c1):
ifnotisSlash(c2):
return2
whilei<shortPathLenandisSlash(shortPath[i]):
i+=1
whilej<longPathLenandisSlash(longPath[j]):
j+=1
else:
ifc1!=c2:
ifi==shortPathLen:
returncmpFator
else:
return2
i+=1
j+=1
ifi==shortPathLen:
ifj==longPathLen:
return0
whilej<longPathLen:
ifnotisSlash(longPath[j]):
returncmpFator
j+=1
return0
else:
return2
defisSlash(c):
returnc=='/'orc=='\'
printcomparePath('C:/','C:/')
printcomparePath('C:/','C:/Python27')
printcomparePath('C:/Python27','C:')
printcomparePath('C:/Python27','D:')
result:
0
-1
1
2
『伍』 python中= 和 ==的區別
他們之間的區別就是代表的含義有所不同。
一個等號代表的含義是賦值,將某一數值賦給某個變數,比如a=3,將3這個數值賦予給a。
兩個等號是判斷是否相等,返回True或False,比如1==1。他們是相等的,那麼就返回true。1==2,他們是不相等的,那麼就返回false。
(5)python相等擴展閱讀
Python的表達式寫法與C/C++類似。只是在某些寫法有所差別。主要的算術運算符與C/C++類似。
+, -, *, /, //, **, ~, %分別表示加法或者取正、減法或者取負、乘法、除法、整除、乘方、取補、取余。>>, <<表示右移和左移。
&, |, ^表示二進制的AND, OR, XOR運算。
>, <, ==, !=, <=, >=用於比較兩個表達式的值,分別表示大於、小於、等於、不等於、小於等於、大於等於。
在這些運算符裡面,~, |, ^, &, <<, >>必須應用於整數。
『陸』 python中如何比較元組內兩個值是否相等呢
>>>a=(('name1','lisi'),('name2','lisi'))
>>>a[0]
('name1','lisi')
>>>a[1]
('name2','lisi')
>>>a[0][1]
'lisi'
>>>a[1][1]
'lisi'
>>>a[0][1]==a[1][1]
True
>>>
『柒』 python判斷字元串是否有相等的字元
這裡面有幾種空的表示: None是一個空的對象,代表什麼都沒有; '',是一個字元串對象,代表一個空的字元串; 這兩者是有區別的,下面舉例具體說明: reaCode = Noneif ( reaCode == None ): print "is null"if ( reaCode is None ): print "is ...
『捌』 「python」中怎麼判斷字元串相等
1:發現m=input();輸入『xinwen』後按回車。
2:m的值是 『xinwen
』,原因就在這里。
3:而在解析器中則沒有這個問題。
4:你用的應該不是python3吧,麻煩你告訴我你用的python的版本
不好意思,不過我要說,你說s.attrib.get('dirname')==dirname
怎麼著也檢測不出來 是什麼意思,是指這個判斷總是為False嗎?
第二行
dirname=''.join(list_full_filename[len_input_dir]) 內容等於「文件1」
意思是說dirname變數等於「文件1」嗎?
第三行
s.attrib.get('dirname')=「文件1」 內容也等於「文件1」
意思是s.attrib.get('dirname')的值是「文件1」是吧??
不過你這里的s是什麼呢????
print isinstance(s.attrib.get('dirname'),str) true
print isinstance(dirname,str) false
就可以知道:
s.attrib.get('dirname')==dirname
必然返回False的。應為他們的類型甚至都不一樣。
你可以這樣用:
unicode(s.attrib.get('dirname'))==dirname
不過先請告訴我你用的python的版本吧。不同版本的python對字元串的處理方法不一樣的
『玖』 python 判斷中文字元串是否相等
if u"星期 節次" == tempStr[0]