python字符串为空判断
发布时间: 2022-09-15 10:47:46
A. python字符串相等if,python判断字符串是否为空用什么方法
reaCode=None
if(reaCode==None):
print"isnull"
else:
print"not!"
if(reaCodeisNone):
print"isnull"
else:
print"not!"
reaCode=''
if(reaCodeis''):
print"isnullstring"
else:
print"not!"
reaCode=''
if(reaCode==''):
print"isnullstring"
else:
print"not!"
if(reaCode==None):
print"isnull"
else:
print"not!"
if(reaCodeisNone):
print"isnull"
else:
print"not!"
None是一个空的对象,代表什么都没有。
而'',是一个字符串对象,代表一个空的字符串。
B. Python中如何判断一个字符串中有几个空格
#!/usr/bin/envpython
#coding=utf-8
"""
Python中如何判断一个字符串中有几个空格
http://..com/question/138854675106454205.html
"""
from__future__import(print_function,unicode_literals)
text='2014.112016.03xxx有限公司(1年4个月)'
currentCharIsSpace=False
count=0
forcintext:
ifcurrentCharIsSpace:
ifc.isspace():
count+=1
else:
currentCharIsSpace=False
print("%s个空格"%(count,))
else:
ifc.isspace():
count=1
currentCharIsSpace=True
else:
print(c,end="")
ifcurrentCharIsSpace:
currentCharIsSpace=False
print("%s个空格"%(count,))
运行结果
2014.112个空格
016.032个空格
xx有限公司2个空格
1年4个月)
C. Python中None和'空字符串的区别有哪些
None是值,pass是空语句,
a=10
if a>8:
pass
print a
这个例子中a>8后什么也补执行,相当于是个空操作.
至于None就是不存在的意思,或者在判断语句中就是“false"的意思。两者区别:
None是一个空的对象,代表什么都没有。
而是一个字符串对象,代表一个空的字符串。
只有字符串才能和字符串相互连接。
D. python 怎么判断文件的空行
是空字符串还是空?
空字符串也是有内容的,只是没东西
但为空,是指什么都没有
先判断是否为空
if
not
str:
print
'空对象“
if
not
len(str.strip())
##空字符串
print
'空字符串'
如果不考虑是哪一种,可以结合来判断
if
not
str
or
not
len(str.strip()):
print
'空’
E. python如何判断字符串为空
a=''
if not a:
print "a是空的"
输出结果为:a是空的
F. Python中s为空字符时,输出s[0]会报错,但是输出s[0:]不会报错
这个问题不错,首先s[0]其实和s[0:1]是一样的获取第一个元素的。所以空字符串会报错。但是s[0:]这个是从0个元素开始到最后一个,如果空字符串就是s[0:0]所以不会报错
热点内容