Cell In[14], line 10 print selected_stock ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
时间: 2024-05-20 19:15:31 浏览: 114
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
这个错误提示意味着你在Python 3.x版本中使用了Python 2.x版本的print语法。在Python 3.x中,print语句已经成为了一个函数,需要使用括号来调用。所以你需要在print语句中加上括号,像这样:`print(selected_stock)`。如果你正在使用Python 2.x版本,可以继续使用print语句而不需要括号。
阅读全文