我编程题,时间不够了,直接按了第三个按钮提交了。没有按第二个按钮保存并提交。 请问这可以吗? 我用的是正则表达式的匹配 def token_replace(my_template, keys, values): mydict = dict() for key, value in zip(keys, values): mydict[key] = value s_new = '' i = 0 import re pt = re.compile("%(\w*)%") while i &...