SyntaxError: Missing parentheses in call to 'print'. Did you mean print("freqSet:",freqSet)?什么意思
时间: 2023-06-02 15:06:07 浏览: 171
这个错误意味着您在print函数的调用中缺少一个或多个括号。建议您将print函数调用中的括号检查一遍,以确保所有必需的括号都存在。同时,该错误提示是否意味着您可能是想要将参数放在括号中。此外,也可以参考错误提示中提供的建议,将命令改为print("freqSet:",freqSet)。
相关问题
SyntaxError: Missing parentheses in call to 'print'. Did you mean print
这个错误是由于在Python3中,print函数需要使用括号,而在Python2中则不需要。因此,如果你在Python3中运行Python2的代码,就会出现这个错误。解决这个问题的方法有两种:
1.在print函数中添加括号,例如:
```python
print('Hello, world!')
```
改为:
```python
print('Hello, world!')
```
2.将Python2的代码转换为Python3的代码。可以使用2to3工具来自动完成这个过程,也可以手动修改代码。
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(asd)?
这个错误提示是因为在Python3中,print函数需要加上括号,而你的代码中没有加上括号。正确的写法应该是print(asd)。如果你想在Python2中使用print语句,则不需要加上括号。下面是两个版本的代码示例:
Python3版本:
```python
print(asd) # 正确写法
print asd # 错误写法
```
Python2版本:
```python
print asd # 正确写法
print(asd) # 错误写法
```
阅读全文