题解 | #牛牛的逻辑运算#

牛牛的逻辑运算

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

  1. and:结果为真,返回最后一个真;结果为假,返回第一个假;
  2. or:结果为真,返回第一个真;结果为假,返回最后一个假;
  3. 值的话,返回值;条件表达式的话,返回True/False。
#Python学旅#
全部评论

相关推荐

在评审的大师兄很完美:像这种一般就是部门不匹配 转移至其他部门然后挂掉 我就是这样被挂了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务