码迷,mamicode.com
首页 > 编程语言 > 详细

Python语法练习--for循环

时间:2016-07-25 16:35:52      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:python   游戏   

#!/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次,游戏退出")


本文出自 “半夏轻浅的博客” 博客,请务必保留此出处http://sublime.blog.51cto.com/8856101/1829640

Python语法练习--for循环

标签:python   游戏   

原文地址:http://sublime.blog.51cto.com/8856101/1829640

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!