python自带的集成开发环境为ide,打开ide的方式为
开始->程序->Python 2.*/3.*-> IDLE (Python GUI) 如此就打开了Python Shell->File->New window(Ctrl+N)
就出现了python编辑器
编写代码比如
print('Hello World')
然后保存文件为helloworld.py(注意记得加py扩展名,默认是不会自动加添的)。
在编辑器窗口按F5即可在Python Shell中看到结果。
更多学习内容,请点击