实现代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
def check_float(string): #支付时,输入的金额可能是小数,也可能是整数 s = str (string) if s.count( '.' ) = = 1 : # 判断小数点个数 sl = s.split( '.' ) # 按照小数点进行分割 left = sl[ 0 ] # 小数点前面的 right = sl[ 1 ] # 小数点后面的 if left.startswith( '-' ) and left.count( '-' ) = = 1 and right.isdigit(): lleft = left.split( '-' )[ 1 ] # 按照-分割,然后取负号后面的数字 if lleft.isdigit(): return False elif left.isdigit() and right.isdigit(): # 判断是否为正小数 return True elif s.isdigit(): s = int (s) if s ! = 0 : return True return False |
以上就是python 判断是否为正小数和正整数的详解,本站有关python的文章还有很多,希望大家搜索查阅,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:http://www.cnblogs.com/lhly/p/7221456.html