Python/SUMMARY.md

34 lines
1.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# Summary
* [前言](README.md)
* [Python代码规范](/codeSpecification/codeSpecification_Preface.md)
* [一、简明概述](/codeSpecification/codeSpecification_first.md)
* [二、注释](/codeSpecification/codeSpecification_second.md)
* [三、命名规范](/codeSpecification/codeSpecification_third.md)
* [第一个Python程序](/python1/Preface.md)
* [一、Python 简介](/python1/Introduction.md)
* [二、Python 的安装](/python1/Installation.md)
* [三、第一个 Python 程序](/python1/The_first_procedure.md)
* [四、集成开发环境IDE: PyCharm](/python1/IDE.md)
* [基本数据类型和变量](/python2/Preface.md)
* [一、Python 语法的简要说明](/python2/Grammar.md)
* [二、Python 的基本数据类型](/python2/Type_of_data.md)
* [三、基本数据类型转换](/python2/Type_conversion.md)
* [四、Python 中的变量](/python2/Variable.md)
* [List 和 Tuple](/python3/Preface.md)
* [一、List列表](/python3/List.md)
* [二、tuple元组](/python3/tuple.md)
* [ Dict 和 Set](/python4/Preface.md)
* [一、字典(Dictionary)](/python4/Dict.md)
* [二、set](/python4/Set.md)
* [条件语句和循环语句](/python5/Preface.md)
* [一、条件语句](/python5/If.md)
* [二、循环语句](/python5/Cycle.md)
* [三、条件语句和循环语句综合实例](/python5/Example.md)
* [函数](/python6/Preface.md)
* [一、Python 自定义函数的基本步骤](/python6/1.md)
* [二、函数传值问题](/python6/2.md)
* [三、函数返回值](/python6/3.md)
* [四、函数的参数](/python6/4.md)
* [五、匿名函数](/python6/5.md)