Why am I getting “SytaxError: Missing parentheses in call to 'print'”
本问题已经有最佳答案,请猛点这里访问。
我刚下载并安装了Python 3.5.2,我有两个python文件,我想从CMD运行,但我遇到了问题
1 | SyntaxError: Missing parentheses in call to 'print' |
问题代码如下:
1 2 3 | print '####### ' + modulename ########################################################### def sqlihunt(dork , filename ): |
python 3中的print语句需要括号。
例如: