在Python 2.7之前替代dict理解
如何使以下功能与Python 2.7之前的Python版本兼容?
gwfuncs = [reboot, flush_macs, flush_cache, new_gw, revert_gw, send_log] gw_func_dict = {chr(2**i): func for i, func in enumerate(gwfuncs[:8])}
相关分类