编程53--python学习27使用format格式化字符串的过程中,输出大括号问题解决
Posted 呆呆象呆呆
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编程53--python学习27使用format格式化字符串的过程中,输出大括号问题解决相关的知识,希望对你有一定的参考价值。
需要使用{{
或者}}
代替原本的{
或者}
举例如下
例子1
正常的format语句
print("{}".format(100))
例子2 想要通过正常方式输出{
或者}
会报错
print("{} and want to print another {hhh}".format(100))
例子3 使用正确的方法进行输出
print("{} and want to print another {{hhh}}".format(100))
例子4 在没有format的语句中使用双大括号就会正常打出两个大括号
print(str(100) + " and want to print another {{hhh}}")
以上是关于编程53--python学习27使用format格式化字符串的过程中,输出大括号问题解决的主要内容,如果未能解决你的问题,请参考以下文章