1.代码测试

import yaml

fd = open('fileName.yaml', 'r')
dict_tmp = yaml.load(fd)
fd.close()

print dict_tmp