python入门第二讲--If-->else if

创建一个文件名为guess_age.py的文档:

age_of_Monchie=24                #意思是“Monchie的年龄”=24

guess_age = int(input(">>:"))        #guess age=用户输入的年龄

if guess_age == age_of_Monchie:  #冒号很重要;若guess_age =24

    print("yes,you got it.")          #缩进很重要;输出("yes,you got it.")

elif guess_age>age_of_Monchie:    #elif==我们所理解的else if ;另外若guess_age>24

    print("you should try smaller.")   #输出("you should try smaller.")

else:                               #冒号很重要;否则

print("you should try bigger.")     #输出("you should try bigger.")

保存后执行:(以本人为例,我的guess_age.py文档保存在d:\MQ\computer\python_code文件夹下)

在cmd中输入python d:\MQ\computer\python_code\guess_age.py回车输出:

>>:(意思是等着用户输入年龄)输入一个数字回车即可执行程序,如:python入门第二讲--If-->else if

第一个程序就写完啦,秋咪秋咪~~

上一篇:python基础 day1 var、 if、while、for、with as、open用法


下一篇:C++编写的一个简单的猜数字游戏源码