money.isdigit()判断money是不是整数
今日问答
YOUTUBE频道欢迎订阅我的bilibili频道
money.isdigit()判断money是不是整数
简介
大家好,我是麦克阿洛。如果你喜欢我的文章,欢迎订阅和关注哦。
视频教程
B 站视频教程: https://space.bilibili.com/558452474操作步骤
描述Python isdigit() 方法检测字符串是否只由数字组成,只对 0 和 正数有效。语法isdigit()方法语法:str.isdigit()
3.返回值如果字符串只包含数字则返回 True 否则返回 False。
4.编写代码
!/usr/bin/python-*- coding: UTF-8 -*-字符串只包含数字strTest = "123456789"print(strTest.isdigit()) 打印结果: TruestrTest = "都是字符串的测试代码"print(strTest.isdigit()) 打印结果: FalsestrTest = Noneprint(strTest.isdigit()) 打印结果: AttributeError: NoneType object has no attribute isdigitstrTest = "0"print(strTest.isdigit()) 打印结果: TruestrTest = "-1"print(strTest.isdigit()) 打印结果:False
5. 输出结果:
参考资料
无
结束の语
今天的教程到这里就结束了。如果想获得更多的内容,请关注我哦,谢谢大家。