作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想写一些简单的东西
"{}MESSAGE{}".format("\t"*15, "\t"*15)
使用
f"{'\t'*15}MESSAGE{'\t'*15}" # This is incorrect
但我收到以下错误:
>>> something = f"{'\t'*6} Weather"
File "<stdin>", line 1
SyntaxError: f-string expression part cannot include a backslash
>>> something = f"{\'\t\'*6} Weather"
File "<stdin>", line 1
SyntaxError: f-string expression part cannot include a backslash
我怎样才能做到这一点?
最佳答案
你可能会看到这个:
>>> f"{'\t'*15}MESSAGE{'\t'*15}"
File "<stdin>", line 1
f"{'\t'*15}MESSAGE{'\t'*15}"
^
SyntaxError: f-string expression part cannot include a backslash
为简单起见,f-string 表达式不能包含反斜杠,所以你必须这样做
>>> spacer = '\t' * 15
>>> f"{spacer}MESSAGE{spacer}"
'\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tMESSAGE\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'
>>>
关于python - 如何将反斜杠转义序列放入 f-string,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66173070/
我是一名优秀的程序员,十分优秀!