How can I remove a string's parentheses so it can be used in functions?
如果我调用一个函数
和这个一样。
1 2 3 4 5 6 7 8 9 | typemap = { 'list': list ... } def check(x): ... if isinstance(value, typemap[x]): ... |
但实际上你应该直接通过
如果我调用一个函数
和这个一样。
1 2 3 4 5 6 7 8 9 | typemap = { 'list': list ... } def check(x): ... if isinstance(value, typemap[x]): ... |
但实际上你应该直接通过