美文网首页思科DevNet
python 输入小记

python 输入小记

作者: 开悦 | 来源:发表于2017-08-01 13:01 被阅读0次

    在接收input方法后,判断接收到的字符串是否为数字

    例如:

    str = raw_input("please input the number:")

    if str.isdigit():

    为True表示输入的所有字符都是数字,否则,不是全部为数字

    str为字符串

    str.isalnum() 所有字符都是数字或者字母

    str.isalpha() 所有字符都是字母

    str.isdigit() 所有字符都是数字

    str.islower() 所有字符都是小写

    str.isupper() 所有字符都是大写

    str.istitle() 所有单词都是首字母大写,像标题

    str.isspace() 所有字符都是空白字符、\t、\n、\r

    相关文章

      网友评论

        本文标题:python 输入小记

        本文链接:https://www.haomeiwen.com/subject/iidjlxtx.html