我会在我的字典中添加一个包含字典长度的值,例如:
所以我基本上尝试了
{..., 'commands' : len(dict) + ' commands are available'}
但它让我重蹈覆辙NameError: name 'dict' is not defined
我也试过
def dict_len():
return len(dict)
{..., 'commands' : dict_len() + ' commands are available'}
但是也: NameError: name 'dict' is not defined
我怎么解决这个问题?
慕哥9229398
慕森王
相关分类