gpt4 book ai didi

python - 使用图像作为键

转载 作者:行者123 更新时间:2023-12-01 01:13:22 24 4
gpt4 key购买 nike

是否可以在Python中使用图像作为字典中的键?

answer_List = {One : 1, Two : 2, Three :3, Four : 4, Five : 5, Six : 6}

其中 1-6 是 png 文件。我是Python新手,我一直读到它非常灵活,任何东西都可以存储在任何东西中。但我收到错误

TypeError: unhashable type: 'PngImageFile'

谢谢。

最佳答案

如果对象要用作字典键,则该对象必须是可散列的。 IE。它必须具有(或继承)__hash__方法。

我不确定您想要实现什么,但如果您需要与图像关联的值,您可以使用它们的文件名作为键:

{One.filename: 1, Two.filename: 2, ...}

关于python - 使用图像作为键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54612924/

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