The Notes for Professionals book is compiled from Stack Overflow Documentation, the content is written by the beautiful people at Stack Overflow. Text content is released under Creative Commons BY-SA. See credits at the end of this book whom contributed to the various chapters. Images may be copyright of their respective owners unless otherwise specified
Book created for educational purposes and is not affiliated with group(s), company(s) nor Stack Overflow. All trademarks belong to their respective company owners
https://goalkicker.com/
章节目录
1-1
Content list
1-2
About
1-3
Chapter 1: Getting started with Python Language
1-4
Section 1.1: Getting Started
1-5
Section 1.2: Creating variables and assigning values
1-6
Section 1.3: Block Indentation
1-7
Section 1.4: Datatypes
1-8
Section 1.5: Collection Types
1-9
Section 1.6: IDLE - Python GUI
1-10
Section 1.7: User Input
1-11
Section 1.8: Built in Modules and Functions
1-12
Section 1.9: Creating a module
1-13
Section 1.10: Installation of Python 2.7.x and 3.x
1-14
Section 1.11: String function - str() and repr()
1-15
Section 1.12: Installing external modules using pip
1-16
Section 1.13: Help Utility
1-17
Chapter 2: Python Data Types
1-18
Section 2.1: String Data Type
1-19
Section 2.2: Set Data Types
1-20
Section 2.3: Numbers data type
1-21
Section 2.4: List Data Type
1-22
Section 2.5: Dictionary Data Type
1-23
Section 2.6: Tuple Data Type
1-24
Chapter 3: Indentation
1-25
Section 3.1: Simple example
1-26
Section 3.2: How Indentation is Parsed
1-27
Section 3.3: Indentation Errors
1-28
Chapter 4: Comments and Documentation
1-29
Section 4.1: Single line, inline and multiline comments