python格式化字符串
Posted jiangwenwen1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python格式化字符串相关的知识,希望对你有一定的参考价值。
第一种:
print('%2d-%02d' % (3, 1))
print('%.2f' % 3.1415926)
# convert an int value to a string and to represent it as a hexadecimal number
print('%x' % 23004)
# refer to variable substitutions by name
print('Hey %(name)s, there is a 0x%(errno)x error!' % "name": 'jiangwenwen', "errno": 12345 )
第二种:
print('Hello, '.format('jiangwenwen'))
print('Hey name, there is a 0xerrno:x error!'.format(name='jiangwenwen', errno=1))
print('Hello, 0, 成绩提升了 1:.1f%'.format('小明', 17.125))
第三种:
name = 'jiangwenwen'
age = 24
print(f'My name is name, I am age years old!')
第四种:
from string import Template
template = Template('Hello, $name')
print(template.substitute(name=name))
以上是关于python格式化字符串的主要内容,如果未能解决你的问题,请参考以下文章