- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 Python3(.7) 中使用三引号字符串来构建一些格式化的字符串。
我有一个内部字符串列表,所有这些字符串都需要使用标签:
This is some text
across multiple
lines.
data{
// string goes here
}
dedent
使用 Python3 三引号 fstrings:
import textwrap
inner_str = textwrap.dedent(
'''\
This is some text
across multiple
lines.'''
)
full_str = textwrap.dedent(
f'''\
data{{
// This should all be tabbed
{inner_str}
}}'''
)
print(full_str)
data{
// This should all be tabbed
This is some text
across multiple
lines.
}
data{
// This should all be tabbed
This is some text
across multiple
lines.
}
最佳答案
这似乎提供了你想要的。
import textwrap
inner_str = textwrap.dedent(
'''\
This is some text
across multiple
lines.'''
)
full_str = textwrap.dedent(
f'''
data{{
{textwrap.indent(inner_str, " ")}
}}'''
)
idt = str.maketrans({'\n': "\n "})
print(textwrap.dedent(
f'''
data{{
{inner_str.translate(idt)}
}}'''
))
def indent_inner(inner_str, indent):
return inner_str.replace('\n', '\n' + indent) # os.linesep could be used if the function is needed across different OSs
print(textwrap.dedent(
f'''
data{{
{indent_inner(inner_str, " ")}
}}'''
))
关于python - 在三引号 fstring 中保留缩进,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57174866/
与 string.Template() 或其他方法相比,我喜欢使用 Python f-string,因为它的语法简单。然而,在我的应用程序中,字符串是从文件中加载的,变量的值只能稍后提供。 是否有办法
我正在尝试在 Python3(.7) 中使用三引号字符串来构建一些格式化的字符串。 我有一个内部字符串列表,所有这些字符串都需要使用标签: This is some text acro
fstrings 在 Python 中是如何实现的?我正在通过 IDE 查看字符串和 fstring 变量的类型,它们具有相同的推断类型 str。它是一个全新的类还是实现与字符串相同的接口(inter
我正在尝试编写以下字符串 Target\=R80.40 正如上面所示,而 R80.40 应该是从变量派生的值。 所以解决方案应该是这样的 version='R80.40' print(f'Target
当做python3 Webhook.py(this是文件)时,它给了我错误: File "", line 1 (%X - %x) ^ SyntaxError: invalid syntax 我尝试打印
我在 pip install future-fstrings 之后在 python2 中使用 fstrings,如下所示: # -*- coding: future_fstrings -*- clas
我是一名优秀的程序员,十分优秀!