基础篇 n
第1章Python语言介绍 n
1.1Python语言简介 n
1.2安装与配置Python环境 n
1.2.1安装Python n
1.2.2运行Python n
1.3Python开发环境IDLE简介 n
1.3.1IDLE的启动 n
1.3.2利用IDLE创建Python程序 n
1.3.3IDLE常用编辑功能 n
1.3.4在IDLE中运行和调试Python程序 n
1.4Python基本输入/输出 n
1.4.1Python基本输入 n
1.4.2Python基本输出 n
1.5Python代码规范 n
1.6使用帮助 n
1.7习题 n
第2章Python语法基础 n
2.1Python数据类型 n
2.1.1数值类型 n
2.1.2字符串 n
2.1.3布尔类型 n
2.1.4空值 n
2.1.5Python数字类型转换 n
2.2常量和变量 n
2.2.1变量 n
2.2.2常量 n
2.3运算符与表达式 n
2.3.1运算符 n
2.3.2表达式 n
2.4序列数据结构 n
2.4.1列表 n
2.4.2元组 n
2.4.3字典 n
2.4.4集合 n
2.5习题 n
第3章Python控制语句 n
3.1选择结构 n
3.1.1if语句 n
3.1.2if…else语句 n
3.1.3if…elif…else语句 n
3.1.4pass语句