IDLE:
IDLE是Python标准发行版内置的一个简单小巧的IDE,包括了交互式命令行、编辑器、调试器等基本组件,足以应付大多数简单应用。
基本操作:
File->New File 新建立py脚本Alt+n 后一条命令Alt+p 前一条命令Tab缩进和提示F5运行
BIF 内建的函数(built-in functions):
帮助:
Python demo:
print(
'---------First python----------------')
temp = input(
"Enter a number:")
guess =
int(temp)
if guess == 8
:
print(
"Get\n" *8
guess)
else:
print(
"Not Get")
print(
"Complete")
转载于:https://www.cnblogs.com/AK47Sonic/p/7703799.html
相关资源:Python3.4学习笔记之 idle 清屏扩展插件用法分析