python学习

python字符串大小写转换:

str="AaBb"

strlower=str.lower()

print("%s 小写形式为:%s" % (str,strlower))



islower=strlower.islower()

print("%s 是否为小写形式:%s" % (strlower,islower))





strupper=str.upper()

print("%s 大写形式为: %s" % (str,strupper))



isupper=strupper.isupper()

print("%s 是否为大写形式: %s" % (strupper,isupper))

输出结果为:

AaBb 小写形式为:aabb

aabb 是否为小写形式:True

AaBb 大写形式为: AABB

AABB 是否为大写形式: True

 

你可能感兴趣的:(python)