I know how to use string format in python
"name = {fname}".format(fname = "John")
The output is name = John
But how can I use if I need to input {}
inside the string that not belong to variable , for example
"{NOTVAR} name = {fname}".format(fname = "John")
I want to output will be {NOTVAR} name = John