标签: python
我可以使用多个ifs和正确的函数解决它......但是想知道是否有更好的解决方案......
作为例子
10,5 would return true 10 would return true 9,3 would return false 9,5 would return true
有什么想法吗?
答案 0 :(得分:2)
使用正则表达式:
import re def int_or_comma_5(n): return re.match('\d+(,5)?$',n)