天蓬老师2017-04-18 10:00:49
In the format string, use '{{' to change to { , '}}' to change to }
Your example can be written like this:
"\d{{5}}_{name}_aaa".format(name=name)
ringa_lee2017-04-18 10:00:49
Is this necessary?
Regular expressions are much more expressive than format, so there is no need to add superfluous information~