python05 if or and 的使用

# if or 的使用
you = input("你去吗?")  # 去或者不去
wife = input("你老婆去吗?")  # 去或者不去
if you == "去" or wife == "去":
    print("你和你老婆有一个去啦,A事情办成了")
# if and 的使用
if you == "去" and wife == "去":
    print("你和你老婆都去了,B事情办成了")
#  白富美测试
color = input("你白么?")  # 白或者黄
money = int(input("你富有?"))  # 1000
beautiful = input("你美么?")  # 美
if color == "白" and money >= 100000000 and beautiful == "美":
    print("白富美")
else:
    print("矮穷矬")

注意事项

因为一共四个语句,要么都不执行,要么都执行,那么这就是一个语句。(python 是根据tab键来进行判断的关系的)

color = input("你白么?") #白 或者 黄

money = int(input("请输入你的财产总和:")) #输入1000

beautiful = input("你美么?")#美 或者 普通

 

if color=="白" and money>1000000 and beautiful=="美":

    print("白富美....")

    print("好羡慕......")

else:

    print("矮矬穷....")

 

#下面的代码 不会因为上面第5行的if条件满足或者不满足而不一样,即 他们之间没有任何关系

print("矮矬穷....")

print("矮矬穷....")

print("矮矬穷....")

'''
not 的使用

'''

if not (color == "白" and money >= 100000000 and beautiful == "美"):
    print("矮穷矬")
    print("矮穷矬")
else:
    print("白富美")
    print("好羡慕")

猜你喜欢

转载自blog.csdn.net/qq_35524586/article/details/84917586