Pythonic操作-持续更新

  1. Python 字典(Dictionary) update() 函数把字典dict2的键/值对更新到dict里。
#!/usr/bin/python

dict = {
     'Name': 'Zara', 'Age': 7}
dict2 = {
     'Sex': 'female' }

dict.update(dict2)
print "Value : %s" %  dict

你可能感兴趣的:(python,深度学习,tensorflow)