Home  >  Article  >  Backend Development  >  Python syntax exercise--for loop

Python syntax exercise--for loop

黄舟
黄舟Original
2016-12-28 17:26:091455browse

#!/usr/bin/env python  
# -*- coding:utf8 -*-  
  
age = 26  
  
for i in range(3):  
    intput = int(input("请猜猜我的年龄:"))  
    if intput < age:  
        print ("输入过小,请重新输入")  
    elif intput > age:  
        print ("输入过大,请重新输入")  
    elif intput == age:  
        print ("答案正确,游戏退出")  
        break  
else:  
    print ("输入错误3次,游戏退出")

The above is the content of Python grammar exercise-for loop. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn