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

牛牛的逻辑运算

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学旅#
全部评论

相关推荐

M_bao:换个排版吧哥们,看着费劲
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务