วิธีทั่วไปคือformat()
ฟังก์ชัน:
>>> s = "This is an {example} with {vars}".format(vars="variables", example="example")
>>> s
'This is an example with variables'
ทำงานได้ดีกับสตริงรูปแบบหลายบรรทัด:
>>> s = '''\
... This is a {length} example.
... Here is a {ordinal} line.\
... '''.format(length='multi-line', ordinal='second')
>>> print(s)
This is a multi-line example.
Here is a second line.
คุณยังสามารถส่งพจนานุกรมพร้อมตัวแปร:
>>> d = { 'vars': "variables", 'example': "example" }
>>> s = "This is an {example} with {vars}"
>>> s.format(**d)
'This is an example with variables'
สิ่งที่ใกล้เคียงกับสิ่งที่คุณถาม (ในแง่ของไวยากรณ์) เป็นสตริงแม่แบบ ตัวอย่างเช่น:
>>> from string import Template
>>> t = Template("This is an $example with $vars")
>>> t.substitute({ 'example': "example", 'vars': "variables"})
'This is an example with variables'
ฉันควรเพิ่มแม้ว่าformat()
ฟังก์ชั่นจะธรรมดากว่าเพราะพร้อมใช้งานและไม่ต้องใช้บรรทัดการนำเข้า
vars()
หรือlocals()
เป็นพจนานุกรมที่มีปัญหาได้