如何使以下功能与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])}
答案 0 :(得分:65)
使用:
gw_func_dict = dict((chr(2**i), func) for i, func in enumerate(gwfuncs[:8]))
这是具有生成dict()
对的生成器表达式的(key, value)
函数。
或者,一般来说,它是对形式的理解:
{key_expr: value_expr for targets in iterable <additional loops or if expressions>}
始终可以与Python兼容&lt; 2.7使用:
dict((key_expr, value_expr) for targets in iterable <additional loops or if expressions>)