sunwpmediasunyingpanlinuxpovmePOVME3-masterPOVME$ POVME3py sample_inputini File homesunminiconda3binPOVME3py line 92 print astr ^SyntaxError Missing parentheses in call to print Did you
这个错误是由于在Python 3中,print语句需要使用括号。要解决这个问题,你需要修改代码中的print语句,将print后面的内容用括号括起来。在你提供的错误消息中,需要将print astr改为print(astr)。修改后的代码如下所示:
print(astr)
原文地址: https://www.cveoy.top/t/topic/h0x0 著作权归作者所有。请勿转载和采集!