标签:span color 小数 ati 格式化 you 格式化输出 浮点 col
字符串里加%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 = 浮点数,小数
标签:span color 小数 ati 格式化 you 格式化输出 浮点 col
原文地址:https://www.cnblogs.com/wulc/p/9827433.html