Given two int values, a and b, return True if either one is 6. Or if their sum or difference is 6. Note: the function abs(num) computes the absolute value of a number.
时间: 2023-12-28 11:03:22 浏览: 174
Python中用于返回绝对值的abs()方法
以下是Python的代码实现:
```python
def love6(a, b):
if a == 6 or b == 6 or a + b == 6 or abs(a - b) == 6:
return True
else:
return False
```
首先判断a或b是否为6,如果是,则返回True。如果不是,再判断a和b的和或差是否为6的绝对值,如果是,则返回True,否则返回False。
阅读全文