heguoze
a = dict(one = 1, tow = 2, three = 3)
b = {\'one\' :1,\'tow\' :2 , \'three\' :3}
c = dict (zip([\'one\', \'tow\', \'three\'],[1,2,3]))
d = dict(((\'one\',1),(\'tow\',2),(\'three\',3)))
e = dict({\'one\' :1,\'tow\':2, \'three\':3})
a=b=c=d=e

分类:

技术点:

相关文章:

  • 2021-10-07
  • 2021-10-07
  • 2021-10-07
  • 2021-10-07
  • 2021-10-07
  • 2021-10-07
  • 2021-10-07
  • 2021-10-07
猜你喜欢
  • 2021-10-07
  • 2021-10-07
  • 2021-10-07
  • 2021-10-07
  • 2021-10-07
  • 2021-10-07
  • 2021-10-07
相关资源
相似解决方案