首页 > 其他 > 详细

Exercise 29 - what if

时间:2019-09-29 18:08:13      阅读:79      评论:0      收藏:0      [点我收藏+]

 

people = 20
cats = 30
dogs = 15


if people < cats:
    print("Too many cats! The world is doomed!")

if people > cats:
    print("Not many cats! The world is saved!")
    
if people < dogs:
    print("The world is drooled on!")
    
if people > dogs:
    print("The world is dry!")
    
    
dogs += 5

if people >= dogs:
    print("People are greater than or equal to dogs.")
    
if people <= dogs:
    print("People are less than or equal to dogs.")
    
    
if people == dogs:
    print("People are dogs.")

output

Too many cats! The world is doomed!
The world is dry!
People are greater than or equal to dogs.
People are less than or equal to dogs.
People are dogs.

 

2019-09-29

22:28:59

Exercise 29 - what if

原文:https://www.cnblogs.com/petitherisson/p/11609047.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!