In Flask, the ImmutableMultiDict type cannot be accurately determined when calling to_dict() ``` from flask import Flask, render_template, request, redirect, url_for def post(self): f = request.form param = f.to_dict() vv = param["vv"] pp = "/test/%s" % (vv) os.system(pp) ``` 