首页 > 编程语言 >【笨方法学python】ex29 - 如果(if)

【笨方法学python】ex29 - 如果(if)

时间:2022-10-08 06:00:07浏览次数:57  
标签:people python print cats ex29 world dogs 方法学

代码如下:

点击查看代码
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 srooled 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."

执行结果: ![image](/i/l/?n=22&i=blog/2279318/202210/2279318-20221008055103185-1115081587.png)

标签:people,python,print,cats,ex29,world,dogs,方法学
From: https://www.cnblogs.com/TiramisuPS/p/16767817.html

相关文章