python字串相等if,python判斷字串是否為空用什麼方法

2021-04-14 05:46:43 字數 3939 閱讀 8972

1樓:花落花飛謝

str = ""

if str == "":

print("字串為空")

else:

print("不為空")

2樓:匿名使用者

if '':

print("字串不為空")

else:

print("字串為空")

python字串相等if,python判斷字串是否為空用什麼方法

3樓:匿名使用者

reacode = none

if ( reacode == none ):

print "is null"

else :

print "not!"

if ( reacode is none ):

print "is null"

else :

print "not!"

reacode = ''

if ( reacode is '' ):

print "is null string"

else :

print "not!"

reacode = ''

if ( reacode == '' ):

print "is null string"

else :

print "not!"

if ( reacode == none ):

print "is null"

else :

print "not!"

if ( reacode is none ):

print "is null"

else :

print "not!"

none是一個空的物件,代表什麼都沒有。

而'',是一個字版符權串物件,代表一個空的字串。

4樓:匿名使用者

1、判斷字串相等用==判斷,**如下

:a = 'abc'

b = 'abc'

if a == b:

print('a等於b')

效果如下:

2、判斷專是否為空使用is none方式屬,**如下:

a = nona

if a is none:

print('a 為空')

效果如下:

5樓:匿名使用者

>>> s2 = none

>>> s1 = ''

>>> s2 = none

>>> if not s1 or not s2:

...    print 'a empty or none string'

...a empty or none string>>>

6樓:匿名使用者

text_str = ''

if not text_str:

print 'str is null'

else:

print 'str is not null'

7樓:匿名使用者

if str=null

8樓:彌寄牽暢然

這裡面有幾種空的表示:

none是一個空的物件,代表什麼都沒有;

'',是一個專字串物件,代表屬一個空的字串;

這兩者是有區別的,下面舉例具體說明:

reacode = none

if ( reacode == none ):

print "is null"

if ( reacode is none ):

print "is null"

reacode = ''

if ( reacode is '' ):

print "is null string"

if ( reacode == '' ):

print "is null string"

python字串相等if,python判斷字串是否為空用什麼方法

9樓:匿名使用者

這裡面有幾種空的表示:

none是一個空的物件,

代表什麼都沒有;

'',是一個字串物件,代表一內個空的字串;容這兩者是有區別的,下面舉例具體說明:

reacode = none

if ( reacode == none ):

print "is null"

if ( reacode is none ):

print "is null"

reacode = ''

if ( reacode is '' ):

print "is null string"

if ( reacode == '' ):

print "is null string"

10樓:侍山佛惜天

這裡copy面有幾種空的表示:

none是一個空的物件,代

表什麼都沒有;

'',是一個字串物件,代表一個空的字串;

這兩者是有區別的,下面舉例具體說明:

reacode = none

if ( reacode == none ):

print "is null"

if ( reacode is none ):

print "is null"

reacode = ''

if ( reacode is '' ):

print "is null string"

if ( reacode == '' ):

print "is null string"

python 判斷字串是否為空用什麼方法?

11樓:匿名使用者

s為字串bai

s.isalnum() 所有字元du

都是數字

zhi或者字母dao

s.isalpha() 所有內字容

符都是字母

s.isdigit() 所有字元都是數字

s.islower() 所有字元都是小寫

s.isupper() 所有字元都是大寫

s.istitle() 所有單詞都是首字母大寫,像標題s.isspace() 所有字元都是空白字元

12樓:匿名使用者

s=' '

if s.strip()=='':

print 's is null'

或者if not s.strip():

print 's is null'

python 判斷字串是否為空用什麼方法

13樓:匿名使用者

python常用的判斷字串為空的方法有2中:

>>> a = ""

if a == "":

if not a:

python字串相等if,python判斷字串是否為空用什麼方法

14樓:深圳中宇視通科技****

reacode = noneif ( reacode == none ): print "is null"else : print "not!

"if ( reacode is none ): print "is null"else : print "not!

"reacode = ''if ( reacode is '' ): print "is null string"else : print "not!

"reacode = ''if ( reaco...

15樓:錦瑟520華年

if not str:

如何判斷字串是否相等,判斷字串是否有值,判斷多個字串是否相等

string str1 abc string str2 bcd if str1.equals str2 用的是專equals 方法屬 先要包含string.h 標頭檔案,再用以下 比較str1與str2二個字串是否相等 if strcmp str1,str2 0 在pl sql怎麼判斷兩個字串是否相...

Python字串是什麼,如何使用?

python的字串就是表示一串字元,字元可以是中文,英文或者數字,或者混合的文字。python字串的幾種表達方式。1 使用單引號擴起來字串。2 使用雙引號將字串擴起來。3 當想要輸出單引號或者雙引號時 將單引號,雙引號作為普通字元輸出 通過 進行轉義。4 通過單引號,雙引號混合的方式輸出單引號,雙引...

python怎麼判斷變數是否為字串

python官方文件在說明來type函式的用法時,明文推自薦用isinstance測試物件型別。isinstance似乎不是這麼用的。我通常的做法是用typex int 5 if type x int print x is interger.else print false.isinstance可以...