问题:
IndentationError: Missing parentheses in call to ‘print’
解决办法:
由于在python3.x中调用python2.x中的
print events 代码,从而报错。
python3.x中正确形式:print(events)
问题:
IndentationError: Missing parentheses in call to ‘print’
解决办法:
由于在python3.x中调用python2.x中的
print events 代码,从而报错。
python3.x中正确形式:print(events)