import collections dic = collections.OrderedDict() name = ['tom','lucy','sam'] print(dic.fromkeys(name)) print(dic.fromkeys(name,20)) ...
確定! 回上一頁