python 判断字符串是否为空用什么方法

2024年11月29日 08:39
有1个网友回答
网友(1):

s=' '
if s.strip()=='':
print 's is null'
或者
if not s.strip():
print 's is null'