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

python格式化输出

时间:2019-01-10 01:10:58      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:.com   png   put   整数   name   --   ima   图片   end   

name = input("Name:")
age = input("Age:")
job = input("job:")
salary = input("Salary:")

if salary.isdigit():                # 判断是不是整数
    salary = int(salary)
else:
    exit("must input digit")
msg = ‘‘‘
----------info of is %s--------
Name:%s
Age :%s
Job :%s
Salary:%s
--------------END--------------
‘‘‘ % (name, name, age, job, salary)
print(msg)

输出结果:
技术分享图片

 



 

python格式化输出

标签:.com   png   put   整数   name   --   ima   图片   end   

原文地址:https://www.cnblogs.com/ss-long/p/10247694.html

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