我不知道该如何恰当地描述它,但这就是我想要实现的:
import yaml
list = {"test1":1,"test2":2,"test3":3}
print(yaml.dump(list, sort_keys=False, default_flow_style=False))
#Output
# test1: 1
# test2: 2
# test3: 3
# Update somehow
print(yaml.dump(list, sort_keys=False, default_flow_style=False))
#Output
# <@test1>: 1
# <@test2>: 2
# <@test3>: 3
1条答案
按热度按时间4ngedf3f1#
使用理解来变换关键帧:
输出: