码迷,mamicode.com
首页 > 其他好文 > 详细

流程控制

时间:2015-06-13 06:31:00      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:python   linux   shell   

#!/usr/bin/env python
import tab
for i in range(3):

        name = raw_input(‘Plelease input your name: ‘)
        if len(name) == 0:
                continue
                break
        print ‘current loop:‘, i
age = int(raw_input(‘Plelease input your age: ‘))
sex = raw_input(‘Plelease input your sex: ‘).strip()
print """Personal info:
        name: %s
        age:  %d
        sex:  %s
""" %(name,age,sex)

if age <= 28:
        print "you can have hald day‘s "
elif sex == ‘F‘:
        print "let me think about it"
else:
        print "oh ,no"


本文出自 “梁恩宇-9527” 博客,请务必保留此出处http://liangey.blog.51cto.com/9097868/1661421

流程控制

标签:python   linux   shell   

原文地址:http://liangey.blog.51cto.com/9097868/1661421

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