python字符格式化输出

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python字符格式化输出相关的知识,希望对你有一定的参考价值。

 

%s表示占位符,把s替换成d表示整数,把s替换成f 表示浮点。

 

name = input("name:")

age = int(input("age:"))

job = input("job:")

salary = input("salary:")

msg = ‘‘‘

------------info of %s----------------------

name: %s

age: %s 

job: %s

salary: %s

you well be retired %s years      #变量age加了int为转化类型

-------------end-------------------------------

‘‘‘  %  (name,name,age,job,salary,70-age)   #对应格式内的位置

print(msg)

以上是关于python字符格式化输出的主要内容,如果未能解决你的问题,请参考以下文章

超详细Python字符串格式化输出的最全介绍

Python:格式化输出

Python如何输出格式化的字符串

Python 学习笔记 -- 字符串格式化输出

python字符串格式化输出

Python字符串格式化输出