【Python】Learn Python the hard way, ex29 if语句

来源:互联网 发布:爱果园团购 淘宝 编辑:程序博客网 时间:2024/06/05 22:43
people = 20cats = 30dogs = 15if 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 += 5if 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."    """Test Result: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."""

0 0
原创粉丝点击