TypeError Traceback (most recent call last) <ipython-input-5-4a8f82ff8d94> in <module>() 83 plt.figure(figsize=(10, 10), dpi=100) 84 plt.xticks(fontsize=10, rotation=90) ---> 85 plt.bar(x=list(dict.keys()),width=0.9,height=brand_dict.values()) 86 for a, b in zip(brand_dict.keys(),brand_dict.values()): 87 plt.text(a, b, '%.0f' % b, ha='center', va='bottom', fontsize=10) TypeError: descriptor 'keys' of 'dict' object needs an argument
时间: 2024-03-19 07:42:05 浏览: 69
这是一个 TypeError,意味着函数或操作尝试使用错误类型的对象。在这个例子中,错误发生在第 85 行,因为 `dict.keys()` 需要传入一个参数,但是在代码中没有传入。为了解决这个问题,你需要将 `dict.keys()` 替换为 `list(dict.keys())`,这将创建一个包含字典键的列表,从而可以在 `plt.bar()` 函数中使用。
相关问题
TypeError Traceback (most recent call last) <ipython-input-21-656cfe61f5bf> in <module>() 5 epochs=2, 6 validation_split=0.2, ----> 7 shuffle=True) 8 9 TypeError: fit() got an unexpected keyword argument 'batch_size'
这是一个关于 Python 代码中 fit() 函数的 TypeError,可能是由于 fit() 函数没有 batch_size 参数导致的。建议检查一下代码中的 fit() 函数,确认是否有输入正确的参数。如果需要更多的帮助,可以提供更详细的代码和错误信息,我会尽力帮忙解决问题。
TypeError Traceback (most recent call last) <ipython-input-2-b8ec604d943f> in <module>() 1 list1 = [1, 2, 3, 1, 2, 3, 4, 5, 1] ----> 2 list2 = list(set(list1)) 3 print(list2) TypeError: 'list' object is not callable
这个错误的原因是你把一个内置函数 `list()` 的名称赋值给了变量 `list2` ,导致程序无法调用内置函数 `list()` 。你可以尝试使用一个不同的变量名来解决这个问题。以下是一种正确的写法:
```
lst1 = [1, 2, 3, 1, 2, 3, 4, 5, 1]
lst2 = list(set(lst1))
print(lst2)
```
这里我们将变量名 `list1` 改为了 `lst1` ,将变量名 `list2` 改为了 `lst2`。
阅读全文