博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python 2.7.9 Demo - 005.字符串判空
阅读量:6037 次
发布时间:2019-06-20

本文共 431 字,大约阅读时间需要 1 分钟。

 

#coding=utf-8#!/usr/bin/pythonstr1 = None;str2 = '';str3 = ' ';if str1 == None :    print("str1 is none.");else :    print("str1 is not none.");if str2 == None :    print("str2 is none.");else :    print("str2 is not none.");if str2 == None or len(str2) == 0 :    print("str2 is none.");else :    print("str2 is not none.");if str3 == None or len(str3.strip()) == 0 :    print("str3 is none.");else :    print("str3 is not none.");

 

转载地址:http://xpohx.baihongyu.com/

你可能感兴趣的文章
兵器簿之Alcatraz(插件管理神器)的配置和使用
查看>>
Kafka实战-Storm Cluster
查看>>
js本地图片预览,兼容ie[6-9]、火狐、Chrome17+、Opera11+、Maxthon3
查看>>
Freedur为什么免费?
查看>>
mysql 1449 : The user specified as a definer ('root'@'%') does not exist 解决方法
查看>>
Bootstrap系列 -- 11. 基础表单
查看>>
格拉西安《智慧书》中最有价值的23条法则
查看>>
Swift使用单个案件管理FMDB数据库
查看>>
Actionscript Flash Event.ENTER_FRAME 延迟间隔非常大 并且 pre-render 耗时非常严重
查看>>
php JSON数据格式化输出方法
查看>>
7款经典炫酷的HTML5/jQuery动画应用示例及源码
查看>>
那些年我们一起追过的缓存写法(四)
查看>>
mssql手工注入
查看>>
appserv+win8
查看>>
Android 应用接入广点通统计API 方案
查看>>
安装 LuaSocket
查看>>
NEXUS7 学习
查看>>
zoj 3203 Light Bulb,三分之二的基本问题
查看>>
【转】idea 用maven骨架生成项目速度慢的问题
查看>>
OpenGL【2 坐标转换】
查看>>