python 判断字符串是否为空用什么方法?
复制代码 s=' ' if s.strip()=='': print 's is null' 或者 if not s.strip(): print 's is null'
复制代码
本文共 167 字,大约阅读时间需要 1 分钟。
python 判断字符串是否为空用什么方法?
复制代码 s=' ' if s.strip()=='': print 's is null' 或者 if not s.strip(): print 's is null'
复制代码
转载于:https://www.cnblogs.com/gaoyuechen/p/7965849.html