Как создать словарь строк, объектов в Python с использованием Python NET?
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