我正在尝试对以下字符串使用format方法
movie = """{
"title" : {0},
"length": {1}m,
"rate": {2}
}"""
print (movie.format("End game", 180, "9/10" ))
应该打印
{
"title" : End game ,
"length": 180m,
"rate": 9/10
}
但我却收到此错误
KeyError: '\n"title" '
一旦删除字符串开头和结尾的“ {”和“}”,它就可以正常工作