Traceback (most recent call last): File "E:/py/python/test/deep learning/test06.py", line 50, in <module> show_images(X.reshape(18,28,28),2,9,titles=get_fashion_mnist_labels(y)); File "E:/py/python/test/deep learning/test06.py", line 34, in show_images _,axes = d2l.plt.subplot(num_rows,num_cols,figsize=figsize) File "D:\software\anaconda\envs\python3.7\lib\site-packages\matplotlib\pyplot.py", line 1268, in subplot key = SubplotSpec._from_subplot_args(fig, args) File "D:\software\anaconda\envs\python3.7\lib\site-packages\matplotlib\gridspec.py", line 594, in _from_subplot_args raise TypeError(f"subplot() takes 1 or 3 positional arguments but " TypeError: subplot() takes 1 or 3 positional arguments but 2 were given这样的报错
时间: 2023-10-08 16:03:56 浏览: 214
根据错误信息,可以看出是在调用`subplot()`函数时传递的参数数量不正确导致的错误。`subplot()`函数需要接受1个或3个位置参数,但你只给出了2个参数。
在你的代码中,`subplot()`函数被调用为`d2l.plt.subplot(num_rows,num_cols,figsize=figsize)`,其中`num_rows`和`num_cols`是两个位置参数,`figsize`是一个关键字参数。根据错误信息,我们可以推断出你传递了2个位置参数,但是缺少了一个关键字参数。
要解决这个问题,你可以尝试将`figsize`参数指定为一个关键字参数,即通过`figsize=figsize`来传递。修改后的代码如下:
```python
_, axes = d2l.plt.subplots(num_rows, num_cols, figsize=figsize)
```
请注意,这里使用的是`subplots()`函数而不是`subplot()`函数。`subplots()`函数可以一次返回多个子图对象,而`subplot()`函数只能返回一个子图对象。
尝试修改代码后再次运行,看看问题是否解决了。如果还有其他问题,请提供更多的错误信息,我会尽力帮助你解决。
相关问题
Traceback (most recent call last): File "C:/Python38/pythonProject/poi.py", line 60, in <module> jsonf = urllib.urlopen(url) Traceback (most recent call last): File "C:/Python38/pythonProject/poi.py", line 60, in <module> jsonf = urllib.urlopen(url) AttributeError: module 'urllib' has no attribute 'urlopen'
您遇到的错误是因为urllib模块中没有urlopen这个属性。Python 3中urllib模块被分为了urllib.request、urllib.parse、urllib.error等子模块。
要解决这个问题,您可以将代码中的urllib替换为urllib.request。请尝试以下修改:
```python
import urllib.request
url = "your_url_here"
jsonf = urllib.request.urlopen(url)
```
这样应该可以解决您的问题。如果还有其他问题,请随时提问。
PS C:\Users\15094\Desktop\MESDEMO> & C:/Users/15094/AppData/Local/Programs/Python/Python38/python.exe c:/Users/15094/Desktop/MESDEMO/ui.py Traceback (most recent call last): File "c:/Users/15094/Desktop/MESDEMO/ui.py", line 3, in <module> class CommunicateServer(QObject): File "c:/Users/15094/Desktop/MESDEMO/ui.py", line 6, in CommunicateServer self.server = QTcpServer() NameError: name 'QTcpServer' is not defined
这个错误提示表明在你的 Python 代码中,使用了一个未定义的名称 QTcpServer。
QTcpServer 是 PyQt5.QtNetwork 模块中的一个类,它提供了一个 TCP 服务器。因此,你需要在代码中导入 PyQt5.QtNetwork 模块并且使用 QTcpServer 类。
你可以在代码开头添加以下导入语句来解决问题:
```
from PyQt5.QtNetwork import QTcpServer
```
这样就可以在你的代码中使用 QTcpServer 类了。
阅读全文