检查数字是否以XX,5结尾或者是python中的整数

时间:2014-04-15 17:07:43

标签: python

我可以使用多个ifs和正确的函数解决它......但是想知道是否有更好的解决方案......

作为例子

10,5 would return true
10 would return true
9,3 would return false
9,5 would return true

有什么想法吗?

1 个答案:

答案 0 :(得分:2)

使用正则表达式:

import re
def int_or_comma_5(n):
    return re.match('\d+(,5)?$',n)