python基础学习1-流程控制和判断

python for循环和 if流程控制用法

Ages=22

for i in range(10):    

    inputAges = int(input("输入年龄"))

    if inputAges>Ages:        

       print("大了")    

   elif inputAges <Ages:        

       print("小了")    

   else :      

      print("正确")        

      break

 
#while 循环使用

count=0
while True:
    count+=1
    print("循环次数{0}".format(count))
    if count ==100 :
        break

 

  

 

 

posted @ 2016-08-12 08:25  whzym111  阅读(126)  评论(0编辑  收藏  举报