2
這可能使用詞典在Python如何使用字典創建動態類名?
a={'a':'hai','b','hello'}
我的預期類名作爲
class hai():
class content
class hello():
class content
這可能使用詞典在Python如何使用字典創建動態類名?
a={'a':'hai','b','hello'}
我的預期類名作爲
class hai():
class content
class hello():
class content
爲什麼你甚至有'a'和'b'作爲鍵?另外,'class content'是什麼意思? – thefourtheye
該類名是基於密鑰生成的 – merano