python 中字符串的格式化

Posted 飘零0

tags:

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

# 字符串格式化
name = input("name:")
age = int(input("age:"))
job = input("job:")
salary = input("salary:")

if salary.isdigit(): # 判断是否是数字
salary = int(salary)
# else:
# # print("please input digit")
# # exit()
# exit("please input digit") # 退出程序


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























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

Python格式化字符串~转

python中字符串格式化

Python之路--Python中应该使用%还是format来格式化字符串?

python 中字符串的格式化

python格式化字符

Python3 字符串