在Python 2.7之前替代dict理解

时间:2014-01-12 00:19:31

标签: python dictionary syntax dictionary-comprehension

如何使以下功能与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])}

1 个答案:

答案 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>)