流程:File>Settings>Plugins>Browse Repositories>Search python >Install>Restart
点击旁边绿色的install,稍等片刻即可完成安装。安装完成后原本的install按钮变成了restart,说明需要重启Intellij Idea。点击按键即可重启。
这样,python的插件就安装完成了。
下载地址:https://www.python.org/getit/
下载executable installer版本,安装
流程:File>Project Structure>SDKS
def hello(name):
strStart = "Please input:" + name
return strStart
print (hello("Hello World!"))