import yaml a = {'a': 'hello', 'b': 'world', 'c': ['this', 'is', ' yaml']} # raw data serialized_data = yaml.dump(a) # serializing data ...
確定! 回上一頁