python多行文本占位替换
时间: 2023-04-05 12:04:00 浏览: 122
多行文本替换工具
可以使用字符串的多行文本格式化功能,例如:
```
text = """
Hello {name},
Welcome to {city}!
"""
formatted_text = text.format(name="John", city="New York")
print(formatted_text)
```
输出:
```
Hello John,
Welcome to New York!
```
其中,`{name}` 和 `{city}` 是占位符,可以在 `format` 方法中传入对应的值进行替换。
阅读全文