python格式化输出
Posted wulc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python格式化输出相关的知识,希望对你有一定的参考价值。
字符串里加%s,后面用%(str)引用
msg=‘‘‘-------information of %s------ name:%s age:%s job:%s salary:%s You will be retired in %s years! ------END------ ‘‘‘ %(name,name,age,job,salary,65-age) print(msg)
%s = string = 字符串
%d = digit = 整数
%f = float = 浮点数,小数
以上是关于python格式化输出的主要内容,如果未能解决你的问题,请参考以下文章