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

字符串格式化输出

时间:2018-06-16 14:28:28      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:input   string   IV   int   lse   span   打印   ring   信息   

用户输入姓名、年龄、职业、工资后打印信息:

%s 代表字符串 string

%d 代表整数 digit

%f 代表浮点数 flloat

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

if salary.isdigit(): #判断长得像不像数字
    salary = int(salary)
else:
    print("You must input digit.")
    exit()   #退出程序

print(name, age, job, salary)

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

 

字符串格式化输出

标签:input   string   IV   int   lse   span   打印   ring   信息   

原文地址:https://www.cnblogs.com/evatan123/p/9190361.html

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