题解 | #牛牛的逻辑运算#
牛牛的逻辑运算
https://www.nowcoder.com/practice/d1f6b7dd048f48c58d974553f0c5a3bc
num_list = input().split() x = int(num_list[0]) y = int(num_list[1]) print(x and y) print(x or y) print(not x) print(not y)
Python中的逻辑运算符and or not:
参考https://blog.csdn.net/swansonge/article/details/109166865
- and:结果为真,返回最后一个真;结果为假,返回第一个假;
- or:结果为真,返回第一个真;结果为假,返回最后一个假;
- 值的话,返回值;条件表达式的话,返回True/False。