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

Python语法练习--字符串格式化

时间:2016-07-25 16:30:55      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:python   字符串   信息   

#!/usr/bin/env python
# -*- coding:utf8 -*-

w_sex = "女"
m_sex = "男"
w_age = 23
m_age = 25

sex_input = input("请输入您的性别:").strip()
age_input = int(input("请输入您的年龄:"))


if sex_input == w_sex and age_input >= w_age:
    print ("您的信息如下:\n性别:%s\n年龄:%s\n您属于晚婚年龄" %(sex_input,age_input))
elif sex_input == m_sex and age_input >= m_age:
    print ("您的信息如下:\n性别:%s\n年龄:%s\n您属于晚婚年龄" %(sex_input,age_input))
else:
    print ("输入错误,系统退出")


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

Python语法练习--字符串格式化

标签:python   字符串   信息   

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

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