【Python】如何判断一个字符串为空

#方法一
if oneString:
	print "not empty"
else:
	print "empty"

#方法二
if oneString == "":
	print "empty"
else:
	print "not empty"

    原文作者:陈钧
    原文地址: https://blog.csdn.net/investchina/article/details/21190075
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞