美文网首页
第五节: 格式化输出

第五节: 格式化输出

作者: tenro | 来源:发表于2020-07-17 18:43 被阅读0次
print('this is my first program in pyCharm')
name = input('名字:')
age = input('年龄:')
job = input('工作:')
salary = input('工资:')

msg = '''
----- info of %s ----
Name: %s
Age: %s
Job: %s
Salary: %s
----- End ----
''' %(name, name, age, job, salary)

print(msg)

#打印出应的输出格式

关于占位符有:

s%: 字符串
d%: 整数
f%: 浮点数

相关文章

网友评论

      本文标题:第五节: 格式化输出

      本文链接:https://www.haomeiwen.com/subject/yurnhktx.html