文章目录
一、报错信息
将 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