有没有更好的方法来编写以下内容:
if "msg" in response_dic or "save_act_errors" in response_dic or "add_act_errors" in response_dic or "modif_act_errors" in response_dic or "update_act_errors" in response_dic:
#do stuff
response_dic
是一本字典,我正在检查键。
其实有2个问题:
1/ 如何测试字典中的多个键?
2/如何检查部分键(在我的情况下以“_act_errors”结尾)?