编程语言
首页 > 编程语言> > 【错误记录】Mac 中 IntelliJ IDEA 运行 Python 程序报错 ( End of statement expected )

【错误记录】Mac 中 IntelliJ IDEA 运行 Python 程序报错 ( End of statement expected )

作者:互联网

文章目录





一、报错信息



将 Python SDK 从 Python 2.7 升级为 Python3.10 后 , 报如下报错 ;

在这里插入图片描述

在这里插入图片描述





二、解决方案



        print "command"
        print command

修改为

        print ("command")
        print (command)

上述报错解决 ;

标签:Python3.10,End,IntelliJ,Python,解决方案,command,print,报错
来源: https://blog.csdn.net/han1202012/article/details/120623304