美文网首页
笨方法学python 习题29

笨方法学python 习题29

作者: d1b0f55d8efb | 来源:发表于2017-07-18 16:16 被阅读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  #dogs=15+
    
    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.")
    
    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.
    

    相关文章

      网友评论

          本文标题:笨方法学python 习题29

          本文链接:https://www.haomeiwen.com/subject/dkshkxtx.html