web-dev-qa-db-ja.com

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])}
34
stdcerr

使用する:

gw_func_dict = dict((chr(2**i), func) for i, func in enumerate(gwfuncs[:8]))

これは、(key, value)ペアを生成するジェネレータ式を持つdict()関数です。

または、一般的に言えば、次の形式のdict内包表記です。

{key_expr: value_expr for targets in iterable <additional loops or if expressions>}

常にPython <2.7と互換性があります:

dict((key_expr, value_expr) for targets in iterable <additional loops or if expressions>)
66
Martijn Pieters