zoukankan      html  css  js  c++  java
  • python 判断字符串是字母 数字 大小写还是空格

    str.isalnum()  所有字符都是数字或者字母,为真返回 Ture,否则返回 False。

    str.isalpha()   所有字符都是字母(当字符串为中文时, 也返回True),为真返回 Ture,否则返回 False。

    str.isdigit()     所有字符都是数字,为真返回 Ture,否则返回 False。

    str.islower()    所有字符都是小写,为真返回 Ture,否则返回 False。

    str.isupper()   所有字符都是大写,为真返回 Ture,否则返回 False。

    str.istitle()      所有单词都是首字母大写,为真返回 Ture,否则返回 False。

    str.isspace()   所有字符都是空白字符,为真返回 Ture,否则返回 False。

  • 相关阅读:
    RegExp
    svn操作
    前端跨域请求
    UML
    excel 常用设置
    python中 cmp
    python global nonlocal
    python常见异常提示
    table边框和td的width失效
    display_css
  • 原文地址:https://www.cnblogs.com/lpgit/p/9277868.html
Copyright © 2011-2022 走看看