Python:判断输入的是否是数字

↘锁芯ラ 提交于 2019-12-14 16:19:14
参考链接:

https://www.cnblogs.com/zxmbky/p/9160822.html


代码:
#!/usr/bin/python3

num1 = input("first num :").strip()
num2 = input("second num: ").strip()

if not  num1.replace(".",'').isdigit():
    exit("fist num not num !")

if not  num2.replace(".",'').isdigit():
    exit("second num not num !")

sum = float(num1) + float(num2)
print("sum :", sum)

执行情况:
adams@adams:~$ python test.py  
first num :12345.43456
second num: 1212..1212^[[D^[[D^[[D
second num not num !
adams@adams:~$ python test.py 
first num :1212.1212
second num: 343434.3434
sum : 344646.4646
adams@adams:~$ python test.py  
first num :qw
second num: 1212
fist num not num !
adams@adams:~$ python test.py 
first num :1212121.455656
second num: sd
second num not num !
adams@adams:~$ 

其中
Python strip() 方法用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列。

注意:该方法只能删除开头或是结尾的字符,不能删除中间部分的字符。


Python replace() 方法把字符串中的 old(旧字符串) 替换成 new(新字符串),如果指定第三个参数max,则替换不超过 max 次。

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!