SyntaxError: Missing parentheses in call to 'print'. Did you mean print(gt.shape)?
时间: 2024-06-13 19:10:09 浏览: 161
CentOS7运行.sh脚本提示syntax error: unexpected end of file的解决方法
5星 · 资源好评率100%
这个错误通常是因为在Python 2中使用了Python 3的print语法,或者在Python 3中使用了不正确的print语法。在Python 3中,print语句应该像函数一样被调用,即在print后面加上括号。因此,正确的语法应该是print(gt.shape)而不是print gt.shape。如果你在Python 2中使用print语句,请确保在print后面加上括号。例如,print("hello,world")而不是print "hello,world"。
示例代码如下:
```python
print(gt.shape)
```
阅读全文