gpt4 book ai didi

Python NET 创建通用字典,对象作为值的类型

转载 作者:行者123 更新时间:2023-12-04 17:44:21 25 4
gpt4 key购买 nike

如何使用 Python NET 在 Python 中创建字符串、对象的字典?

C#

d = new Dictionary<string,object>() // works

python

Dictionary [string, object] # TypeError : type(s) expected

最佳答案

你可以这样创建它:

import clr
from System.Collections.Generic import Dictionary
from System import String
from System import Object
d = Dictionary[String, Object]()
d['Entry 1'] = 'test'
d['Entry 2'] = 12.3
d.Count # returns 2

关于Python NET 创建通用字典,对象作为值的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52811768/

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