如何查找数字是否小于或大于10。
示例1:如果a为100,b为91。这几乎匹配。
示例2:如果a为100,b为89。这根本不是匹配项。
下面是代码及其工作正常。还有其他最简单或最佳的方法来实现
cp
期望值和实际值相同
答案 0 :(得分:2)
您需要查找差值(a,b)
的绝对值:
The method abs()
returns absolute value of x - the (positive) distance between x and zero.
a = 100
b = 110
print(abs(a - b)) # 10
if abs(a -b) <= 10:
print("This is almost Matching")
else:
print("This is not at Matching")
输出:
10
This is almost Matching
答案 1 :(得分:1)
使用abs
来找到绝对差异:
a = 110
b = 100
c = abs(a-b)
if c<=10:
print ("This is almost Matching")
else:
print ("This is not at Matching")