zoukankan      html  css  js  c++  java
  • Python3 isdigit()方法

    描述

    Python isdigit() 方法检测字符串是否只由数字组成。

    语法

    isdigit()方法语法:

    str.isdigit()

    参数

    • 无。

    返回值

    如果字符串只包含数字则返回 True 否则返回 False。

    实例

    以下实例展示了isdigit()方法的实例:

    #!/usr/bin/python3
    
    str = "123456"; 
    print (str.isdigit())
    
    str = "Runoob example....wow!!!"
    print (str.isdigit())

    以上实例输出结果如下:

    True
    False
  • 相关阅读:
    TeX中的引号
    竖式问题
    蛇形填数
    开灯问题
    排列
    分数化小数
    子序列的和
    cookie
    post请求
    get请求
  • 原文地址:https://www.cnblogs.com/xysr-tom/p/10767565.html
Copyright © 2011-2022 走看看