当前位置: 移动技术网 > IT编程>脚本编程>Python > Python判断字符串是否为空和null方法实例

Python判断字符串是否为空和null方法实例

2020年05月11日  | 移动技术网IT编程  | 我要评论

魔幻水浒,巴中网址大全,boie-013

判断python中的一个字符串是否为空,可以使用如下方法

1、使用字符串长度判断

len(s) ==0 则字符串为空

#!/user/local/python/bin/python
# coding=utf-8
test1 = ''
if len(test1) == 0:
  print '字符串test1为空串'
else:
  print '字符串test1不是空串,test1:' + test1

2、isspace判断是否字符串全部是空格

python isspace() 方法检测字符串是否只由空格组成。

#!/user/local/python/bin/python
# coding=utf-8

str = "    "; 
print str.isspace();

str = "this is string example....wow!!!";
print str.isspace();

true
false

3、字符串去空格及去指定字符

去两边空格:str.strip()

去左空格:str.lstrip()

去右空格:str.rstrip()

#!/user/local/python/bin/python
# coding=utf-8
str = "    "; 
print str.strip();
str = "this is string example....wow!!! ";
print str.strip();

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持移动技术网。

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网