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

python 中字符串的格式化

时间:2017-11-26 12:54:20      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:end   pre   python   程序   字符   sdi   exit   inpu   job   

# 字符串格式化
name = input("name:")
age = int(input("age:"))
job = input("job:")
salary = input("salary:")

if salary.isdigit(): # 判断是否是数字
salary = int(salary)
# else:
# # print("please input digit")
# # exit()
# exit("please input digit") # 退出程序


msg = ‘‘‘
------info of %s------
name:%s
age:%s #%d
job:%s
salary:%s #%d
You will be retired in %s year
-------end-------
‘‘‘ % (name, name, age, job, salary, 65-age)
print(msg)

python 中字符串的格式化

标签:end   pre   python   程序   字符   sdi   exit   inpu   job   

原文地址:http://www.cnblogs.com/1510152012huang/p/7898532.html

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