博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python判断字符串是否为空的方法s.strip()=='' if not s.strip():
阅读量:6565 次
发布时间:2019-06-24

本文共 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

你可能感兴趣的文章
[MEAN Stack] First API -- 7. Using Route Files to Structure Server Side API
查看>>
调试逆向分为动态分析技术和静态分析技术(转)
查看>>
Android webview使用详解
查看>>
业务对象和BAPI
查看>>
程序源系统与当前系统不一致:Carry out repairs in non-original systems only if urgent
查看>>
微软职位内部推荐-Senior Software Engineer
查看>>
程序中的魔鬼数字
查看>>
SVN高速新手教程
查看>>
session cookie
查看>>
ZBar之ZBarReaderViewController
查看>>
Nuget~管理自己的包包~丢了的包包快速恢复
查看>>
$.extend({},defaults, options) --(初体验三)
查看>>
jQuery hover() 方法
查看>>
android 一步一步教你集成tinker(热修复)
查看>>
到底有多少内存
查看>>
centos7.3 安装ovirt-engine4.0 版本
查看>>
Jenkins+git+tomcat 自动化持续部署
查看>>
项目log日志打印
查看>>
Openstack的环境的Mitaka部署环境服务,实例(1)
查看>>
文档的压缩与打包
查看>>