string对象方法
Posted mr-l
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了string对象方法相关的知识,希望对你有一定的参考价值。
一:str.isalnum() ,str.isalpha(),str.isdigit() ,str.islower() ,str.isupper()
1.str.isalnum()
This method checks if all the characters of a string are alphanumeric (a-z, A-Z and 0-9).
>>> print ‘ab123‘.isalnum() True >>> print ‘ab123#‘.isalnum() False
2.str.isalpha()
This method checks if all the characters of a string are alphabetical (a-z and A-Z).
>>> print ‘abcD‘.isalpha() True >>> print ‘abcd1‘.isalpha() False
3.str.isdigit()
This method checks if all the characters of a string are digits (0-9).
>>> print ‘1234‘.isdigit() True >>> print ‘123edsd‘.isdigit() False
4.str.islower()
This method checks if all the characters of a string are lowercase characters (a-z)
>>> print ‘abcd123#‘.islower() True >>> print ‘Abcd123#‘.islower() False
This method checks if all the characters of a string are uppercase characters (A-Z).
>>> print ‘ABCD123#‘.isupper() True >>> print ‘Abcd123#‘.isupper() False
以上是关于string对象方法的主要内容,如果未能解决你的问题,请参考以下文章
创建一个叫做机动车的类: 属性:车牌号(String),车速(int),载重量(double) 功能:加速(车速自增)减速(车速自减)修改车牌号,查询车的载重量。 编写两个构造方法:一个没有(代码片段
Failed to convert property value of type ‘java.lang.String‘ to required type ‘int‘ for property(代码片段