我需要格式化以下字符串:
header = """
class SP{
function A{
return {}
}
"""
print(header.format('some_value;'))
我尝试打印的是:
class SP{
function A{
return some_value;
}
如何逃离外部{} 注意IMBALANCED花括号
答案 0 :(得分:0)
header = """
class SP{{
return {0}
}};
"""
print(header.format('some_value;'))