Appearance
将列表转换为字典,使用指定的键函数生成键。
from usepy import key_by
lst
key_fn
>>> key_by(['a', 'bb', 'ccc'], len) {1: 'a', 2: 'bb', 3: 'ccc'}