Rumah > Artikel > pembangunan bahagian belakang > Python如何检查字符串为空
检查方法:1、使用len()函数检查字符串的长度,如果长度为零则为空,语法“len(字符串) ==0”;2、使用isspace判断字符串是否全部是空格,语法“字符串.isspace()=True”;3、使用“字符串.strip()==''”代码来判断。
1、使用字符串长度判断
len(s) ==0 则字符串为空
2、isspace判断是否字符串全部是空格
s.isspace() == True
3、字符串去空格及去指定字符。去掉空格后判断字符串长度,仍然可以判断字符串是不是全部为空格
Python strip() 方法用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列。
注意:该方法只能删除开头或是结尾的字符,不能删除中间部分的字符。
去两边空格:str.strip()
去左空格:str.lstrip()
去右空格:str.rstrip()
去两边字符串:str.strip('d'),相应的也有lstrip,rstrip
判断方法
if s.strip()=='': print 's is null'
Atas ialah kandungan terperinci Python如何检查字符串为空. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!