gpt4 book ai didi

Python:为列表中的每个对象添加时间戳

转载 作者:太空宇宙 更新时间:2023-11-03 18:44:45 24 4
gpt4 key购买 nike

我有一个对象集合,我想为每个对象添加一个时间戳:

t = time.utcnow()  
for x in objects:
x['created_at'] = t

有没有办法内联执行此操作?

最佳答案

不太漂亮(假设x是一个字典):

t = time.utcnow()
map(lambda x: x.update({'created_at': t}), objects)

关于Python:为列表中的每个对象添加时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19772210/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com